Files
wren/test/language/constructor/cannot_be_unary.wren
T

6 lines
68 B
Plaintext
Raw Normal View History

2015-07-10 09:18:22 -07:00
class Foo {
this ! { // expect error
2015-09-15 07:46:09 -07:00
System.print("ok")
2015-07-10 09:18:22 -07:00
}
}