[mcs] Pending implementation of accessors cannot hide base implementation with differ...
[mono.git] / mcs / tests / test-tuple-04.cs
1 // Compiler options: -r:test-tuple-04-lib.dll
2
3 class Test
4 {
5         public static int Main ()
6         {
7                 var x = X.Test1 ();
8                 if (x.b != true)
9                         return 1;
10
11                 var z = X.Field;
12                 if (z.z != false)
13                         return 2;
14
15                 return 0;
16         }
17 }