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

cs8312.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2ad3f52f024efa25d31bd304726baeda50659fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS8312: Use of default literal is not valid in this context
// Line: 9
// Compiler options: -langversion:latest

class C
{
	static void Main ()
	{
		foreach (var x in default) {
		}
	}
}