a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
35 lines
297 B
C#
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);
|
|
}
|
|
}
|
|
|