Files
wren/test/language/method/not_found_eleven_arguments.wren
T

3 lines
168 B
Plaintext
Raw Normal View History

class Foo {}
2015-07-10 09:18:22 -07:00
Foo.new().someUnknownMethod(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11) // expect runtime error: Foo does not implement 'someUnknownMethod(_,_,_,_,_,_,_,_,_,_,_)'.