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

cs0037-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84556c8fd2d186cef9e0a0e8d55bc5b6cf6a112a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0037-4.cs: Cannot convert null to `int' because it is a value type
// Line: 9

class X {
	static void Main ()
	{
		int s = 44;
		switch (s) {
			case null: break;
		}
	}
}