eol
[mcs.git] / tests / gtest-135.cs
blob46b304a961931924de7659a5395205d30688386b
1 using System;
3 class X
5 static void Main ()
7 int? a = null;
8 int b = 3;
9 long? c = a;
10 Console.WriteLine (c);
11 long? d = b;
12 byte? f = (byte?) d;