1
0
forked from Mirror/wren
Files
wren/test/function/call_missing_arguments.wren

3 lines
105 B
Plaintext
Raw Normal View History

var f2 = fn(a, b) IO.print(a + b)
f2.call("a") // expect runtime error: Function expects more arguments.