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

gcs1644-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87c36439f8a14787c83493dcd09e92ea425e1372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs1644.cs: Feature 'generics' cannot be used because it is not part of the standardized ISO C# language specification
// Line: 5
// Compiler options: -langversion:ISO-1

class X<V>
{
}

class X
{
	static void Main ()
	{ }
}