Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0188-2.cs
1 // CS0188: The `this' object cannot be used before all of its fields are assigned to
2 // Line: 10
3
4 struct B
5 {
6         public int a;
7
8         public B (int foo)
9         {
10                 Test ();
11         }
12
13         public void Test ()
14         {
15         }
16 }