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

6 lines
133 B
Plaintext

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