Files
wren/test/language/constructor/cannot_be_static.wren

5 lines
102 B
Plaintext

class Foo {
static construct new() {} // expect error
construct static new() {} // expect error
}