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

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(
)