mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 06:38:45 +01:00
13 lines
221 B
Plaintext
13 lines
221 B
Plaintext
class Foo {
|
|
construct new() {}
|
|
foo() {}
|
|
foo() {} // expect error
|
|
|
|
static bar() {}
|
|
static bar() {} // expect error
|
|
|
|
// No error on instance and static method with same signature.
|
|
baz() {}
|
|
static baz() {}
|
|
}
|