BOO-999
[boo.git] / tests / testcases / errors / BCE0137-3.boo
blob208d4878d20e44dc8426786455fedc918a30da2c
1 """
2 BCE0137-3.boo(11,7): BCE0137: Property 'Foo.Baz' is write only.
3 """
4 class Foo:
5 Baz[index] as string:
6 set:
7 print index, value
9 foo = Foo()
10 foo.Baz[42] = "baz"
11 print foo.Baz[42]