1
0
forked from Mirror/wren
Files
wren/test/language/method/duplicate_methods.wren

12 lines
160 B
Plaintext

class Foo {
construct new() {}
foo() {}
foo() {} // expect error
static bar() {}
static bar() {} // expect error
baz() {}
static baz() {}
}