summaryrefslogtreecommitdiff
path: root/tiger-compiler/tests/type/too-many-args.tig
blob: 839575d6f7cad9724984c06e61626a90792dcf44 (plain)
1
2
3
4
5
6
/* error : formals are fewer then actuals */
let
        function g(a : int , b : string) : int = a
in
        g(3,"one",5)
end