[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0171-3.cs
1 // CS0171: Field `Test.x' must be fully assigned before control leaves the constructor
2 // Line: 10
3
4 public struct Test
5 {
6         internal int x;
7
8         public Test (int x)
9         {
10                 X = x;
11         }
12
13         public int X
14         {
15                 get { return x; }
16                 set { x = value; }
17         }
18 }