Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-878.cs
1 using System;
2
3 public class Tests
4 {
5         public static int Main ()
6         {
7                 return 0;
8         }
9
10         void Test1 ()
11         {
12                 int a;
13                 if (true) {
14                         a = 0;
15                 } else {
16                         a = 1;
17                 }
18
19                 Console.WriteLine (a);
20         }
21
22         void Test2 ()
23         {
24                 int a;
25                 if (false) {
26                         a = 0;
27                 } else {
28                         a = 1;
29                 }
30
31                 Console.WriteLine (a);
32         }
33 }
34