2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-381.cs
bloba8f9d728a88addeda20898298ab3e274e188e2f4
1 public class Application
3 public static void Main(string[] args)
5 if (true)
7 string thisWorks = "nice";
8 System.Console.WriteLine(thisWorks);
10 else
12 string thisDoesnt;
13 System.Console.WriteLine();
14 thisDoesnt = "not so";
15 System.Console.WriteLine(thisDoesnt);