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: 0dd93e9a1afde95fd0ca2472b4c84f89ebad0df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0037.cs: Cannot convert null to `S' because it is a value type
// Line: 10
struct S {
	int a;
}

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