2 // This test checks the !x optimization for if/while/for/do
18 System
.Console
.WriteLine (" " + x
);
21 public static int Main ()
23 int ok
= 0, error
= 0;
47 if (!(t
&& f
== false))
63 System
.Console
.WriteLine ("Value: " + t
);
68 System
.Console
.WriteLine ("Ok=" + ok
+ " Errors=" + error
);
69 return ((ok
== 63) && (error
== 0)) ? 0 : 1;