summaryrefslogtreecommitdiff
path: root/mcs/errors/cs7023-2.cs
blob: ee14e24f96d23bc69eb1e474b2e837a4445b384a (plain)
1
2
3
4
5
6
7
8
9
10
// CS7023: The second operand of `is' or `as' operator cannot be static type `X'
// Line: 8

static class X
{
	public static void Main ()
	{
		var v = null is X;
	}
}