mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 14:48:40 +01:00
12 lines
160 B
Plaintext
12 lines
160 B
Plaintext
class Foo {
|
|
construct new() {}
|
|
foo() {}
|
|
foo() {} // expect error
|
|
|
|
static bar() {}
|
|
static bar() {} // expect error
|
|
|
|
baz() {}
|
|
static baz() {}
|
|
}
|