6 lines
80 B
Text
6 lines
80 B
Text
main : _Int ;
|
|
main = (id : _Int -> _Int) 5 ;
|
|
|
|
id : 'a -> 'a ;
|
|
id x = (x : 'a);
|
|
|