forked from Mirror/wren
6 lines
133 B
Plaintext
6 lines
133 B
Plaintext
class Foo {
|
|
construct new() {}
|
|
}
|
|
|
|
Foo.new().someUnknownMethod // expect runtime error: Foo does not implement 'someUnknownMethod'.
|