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

7 lines
122 B
Text
Raw Normal View History

/* error : formals and actuals have different types */
let
function g (a:int , b:string):int = a
in
g("one", "two")
end