Files
wren/test/language/method/not_found_one_argument.wren
2015-09-01 08:16:04 -07:00

5 lines
138 B
Plaintext

class Foo {
construct new() {}
}
Foo.new().someUnknownMethod(1) // expect runtime error: Foo does not implement 'someUnknownMethod(_)'.