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

gcs1960.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbd5c1550fd5273c709f1dd8d91016ba6be61428 (plain)
1
2
3
4
5
6
7
// CS1960: Variant type parameters can only be used with interfaces and delegates
// Line: 5
// Compiler options: -langversion:future

class A<out T>
{
}