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

gcs1675.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2542e310806ffef86056af3026e4fea9f35d4dc0 (plain)
1
2
3
4
5
6
// CS1675: Enums cannot have type parameters
// Line: 4

enum E<T>
{
}