2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0171-3.cs
blob2ee65200ff4911197cd3240fd84c3f9cf2cb141e
1 // CS0171: Field `Test.x' must be fully assigned before control leaves the constructor
2 // Line: 10
4 public struct Test
6 private int x;
8 public Test (int x)
10 X = x;
13 public int X
15 get { return x; }
16 set { x = value; }