[mono/tests] Fix out of tree build.
[mono-project.git] / mcs / tests / test-702.cs
blobac3422978d9e865b5620b0603dac96faa84b1f0f
1 struct S
3 int a;
4 int b;
6 public S (int i)
8 this = new S ();
11 public S (string s, int a)
13 this.a = a;
14 this.b = 2;
17 public static void Main ()
19 S s = new S (1);