Switch to compiler-tester
[mono.git] / mcs / tests / gtest-140.cs
1 using System;
2
3 class X
4 {
5         static void Main ()
6         {
7                 int?[] bvals = new int?[] { null, 3, 4 };
8                 foreach (long? x in bvals) 
9                         Console.WriteLine (x);
10         }
11 }