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

6 lines
133 B
Plaintext
Raw Normal View History

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