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

gtest-257.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2cccfa25b6994c5d8d76d6b91fedbcc9276e451 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

public class Tests
{
	public static void Main ()
	{
		int? dummy = null;

		Console.WriteLine ("Hello: " + dummy);
	}
}