modern-compiler-ml/tiger/testcases/test36.tig

7 lines
109 B
Text
Raw Normal View History

/* error : formals are fewer then actuals */
let
function g (a:int , b:string):int = a
in
g(3,"one",5)
end