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