Release 0.41.92
[vala-gnome.git] / tests / control-semantic / member-readonly.test
blob13fbcab2c55be94acc06646a7509fe3279752683
1 Invalid Code
3 class Foo {
4         public string foo {
5                 get {
6                         return "bar";
7                 }
8         }
11 void main () {
12         var foo = new Foo () {
13                 foo = "foo"
14         };