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: 988137b5c0060525a8b6b4cf6eac4eae8a3aeffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0037: 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;
	}
}