7d05485754
Former-commit-id: df344e34b07851d296efb3e6604c8db42b6f7aa3
17 lines
214 B
C#
17 lines
214 B
C#
// Compiler options: -r:test-tuple-04-lib.dll
|
|
|
|
class Test
|
|
{
|
|
public static int Main ()
|
|
{
|
|
var x = X.Test1 ();
|
|
if (x.b != true)
|
|
return 1;
|
|
|
|
var z = X.Field;
|
|
if (z.z != false)
|
|
return 2;
|
|
|
|
return 0;
|
|
}
|
|
} |