[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-141.cs
blobade3f51e42442eaa184b854ea6160625378bf73d
1 using System;
3 class X
5 public static void Main ()
7 int?[] bvals = new int? [] { null, 3, 4 };
8 foreach (int? x in bvals)
9 Console.WriteLine (x);