2006-12-05 Chris Toshok <toshok@ximian.com>
[mcs.git] / tests / gtest-139.cs
blob7b187e147bdfbfe392f908ae1c99f7faff562687
1 using System;
3 class X
5 static void Main ()
7 bool? a = true;
8 int? b = a ? 3 : 4;
9 Console.WriteLine (b);