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: f06075a77915d88e45f6b4c9c8670a8ce0b5c8fa (plain)
1
2
3
4
5
6
7
// 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> : V
{
}