summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/type/missing-arg.tig
blob: 979dceaab44d91b8a1b98d4d3df8a25f7e5ee39d (plain)
1
2
3
4
5
6
/* error : formals are more then actuals */
let
        function g(a : int , b : string) : int = a
in
        g("one")
end