summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-387.cs
blob: a13c4d2e7051e9cd23bcfaa6a9a88d88aa8b7d5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class C
{
	public static int Main ()
	{
		sbyte? s = null;
		long? tt = +s;
		if (tt != null)
			return 1;
			
		long? l = null;
		l = +l;
		if (l != null)
			return 2;
			
		return 0;
	}
}