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

cs0037.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32d0b542e9fb73a3ecf3641787389150e00973f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//cs0037.cs: Can not convert null to struct because its a value type
// Line: 10
struct S {
	int a;
}

class X {
	static void Main ()
	{
		S s = (S) null;
	}
}