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

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

class X
{
	static void Main ()
	{
		int? a = 4;
		int? b = -a;
		Console.WriteLine (b);
	}
}