forked from Mirror/wren
20 lines
219 B
Plaintext
20 lines
219 B
Plaintext
|
|
class Foo {
|
|
static call(
|
|
) {
|
|
System.print("Success") // expect: Success
|
|
}
|
|
|
|
construct new () {}
|
|
|
|
call(
|
|
) {
|
|
System.print("Success") // expect: Success
|
|
}
|
|
}
|
|
|
|
Foo.call(
|
|
)
|
|
Foo.new().call(
|
|
)
|