2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0188-2.cs
blob3ffa7a4610d1927ce1b83eaa29bd3f100286f834
1 // cs0188-2.cs: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 10
4 struct B
6 public int a;
8 public B (int foo)
10 Test ();
13 public void Test ()