Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-360.cs
1 public class Application
2 {
3         public static void Main(string[] args)
4         {
5                 if (true)
6                 {
7                         string thisWorks = "nice";
8                         System.Console.WriteLine(thisWorks);
9                 }
10                 else
11                 {
12                         string thisDoesnt = "not so";
13                         System.Console.WriteLine(thisDoesnt);
14                 }
15         }
16 }
17