summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0037-8.cs
blob: 5f54e10eda3b1e7aa05b0cd17846d674e4f87c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0037: Cannot convert null to `int' because it is a value type
// Line: 9

class C
{
	public static void Main ()
	{
		int i = 44;
		i <<= null;
	}
}