Files
wren/test/language/setter/infix_operator.wren
T

7 lines
99 B
Plaintext
Raw Normal View History

2013-12-20 07:05:31 -08:00
class Foo {
bar=(value) { value }
2013-12-20 07:05:31 -08:00
}
2015-07-10 09:18:22 -07:00
var foo = Foo.new()
2013-12-20 07:05:31 -08:00
"a" + foo.bar = "value" // expect error