summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-138.cs
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);
	}
}