2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs1612.cs
blobd4315472f0a116ddd0fa55aeb5cacb60c8315a4e
1 // cs1612.cs: Cannot modify the return value of `X.P' because it is not a variable
2 // Line: 9
4 using System;
5 class X {
6 static void Main ()
9 P.x += 10;
10 Console.WriteLine ("Got: " + P.x);
13 static G P {
14 get {
15 return g;
19 static G g = new G ();
21 struct G {
22 public int x;