2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1612.cs
blobd183e5bf24ac441a30af5f1d236a64ae0abad832
1 // CS1612: Cannot modify a value type return value of `X.P'. Consider storing the value in a temporary 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;