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