* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs1612.cs
1 // cs1612.cs: Cannot modify the return value of `X.P' because it is not a variable
2 // Line: 9
3
4 using System;
5 class X {
6         static void Main ()
7         {
8
9                 P.x += 10;
10                 Console.WriteLine ("Got: " + P.x);
11         }
12
13         static G P {
14          get {
15                 return g;
16          }
17         }
18
19         static G g = new G ();
20
21         struct G {
22                 public int x;
23         }
24 }
25