Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-140.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd5198fb6101a42e57a193e9ae7f780307d97176 (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 (long? x in bvals) 
			Console.WriteLine (x);
	}
}