1
0
forked from Mirror/wren
Files
wren/test/language/constructor/cannot_be_unary.wren

6 lines
73 B
Plaintext

class Foo {
construct ! { // expect error
System.print("ok")
}
}