8 lines
116 B
Plaintext
8 lines
116 B
Plaintext
fn polymorphic'$T'(arg: T) T {
|
|
return arg;
|
|
}
|
|
|
|
fn[cc(.c)] main[export]() s32 {
|
|
return polymorphic's32'(0);
|
|
}
|