2005-06-13 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / tests / gen-139.cs
1 using System;
2
3 class X
4 {
5         static void Main ()
6         {
7                 bool? a = true;
8                 int? b = a ? 3 : 4;
9                 Console.WriteLine (b);
10         }
11 }