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

6 lines
133 B
Plaintext
Raw Normal View History

2015-09-01 08:16:04 -07:00
class Foo {
construct new() {}
}
2014-01-01 13:25:24 -08:00
2015-07-10 09:18:22 -07:00
Foo.new().someUnknownMethod // expect runtime error: Foo does not implement 'someUnknownMethod'.