Merge pull request #4234 from kumpera/katia-flavia
[mono.git] / mcs / tests / test-381.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;
13                         System.Console.WriteLine();
14                         thisDoesnt = "not so";
15                         System.Console.WriteLine(thisDoesnt);
16                 }
17         }
18 }
19