mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-12 14:48:40 +01:00
9 lines
137 B
Plaintext
9 lines
137 B
Plaintext
class Foo {
|
|
static name {
|
|
System.print("Foo.name") // expect: Foo.name
|
|
System.print(super) // expect: Foo
|
|
}
|
|
}
|
|
|
|
Foo.name
|