mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 08:25:02 +01:00
8 lines
112 B
Text
8 lines
112 B
Text
type A[T] = struct { a: T };
|
|
type B[T] = struct {
|
|
b: T,
|
|
};
|
|
|
|
function main() = ;
|
|
|
|
function test(b: B[I32]) = ;
|