Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / test-702.cs
1 struct S
2 {
3         int a;
4         int b;
5         
6         public S (int i)
7         {
8                 this = new S ();
9         }
10         
11         public S (string s, int a)
12         {
13                 this.a = a;
14                 this.b = 2;
15         }
16         
17         public static void Main ()
18         {
19                 S s = new S (1);
20         }
21 }