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

cs7023.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dae17caa411fdee04c25deec0da771e4adb26f1d (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 as X;
	}
}