summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-141.cs
blob: ade3f51e42442eaa184b854ea6160625378bf73d (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

class X
{
	public static void Main ()
	{
		int?[] bvals = new int? [] { null, 3, 4 };
		foreach (int? x in bvals) 
			Console.WriteLine (x);
	}
}