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

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

class X
{
	public static void Main ()
	{
		int? a = 4;
		long b = 5;
		long? c = a * b;
		Console.WriteLine (c);
	}
}