Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

35 lines
297 B
C#

using System;
public class Tests
{
public static int Main ()
{
return 0;
}
void Test1 ()
{
int a;
if (true) {
a = 0;
} else {
a = 1;
}
Console.WriteLine (a);
}
void Test2 ()
{
int a;
if (false) {
a = 0;
} else {
a = 1;
}
Console.WriteLine (a);
}
}