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

cs0689.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ae5030f9681c9dae731c0b4e61bd0c3b9621f5b (plain)
1
2
3
4
// CS0689: `Stack<T>': Cannot derive from type parameter `T'
// Line: 4

class Stack<T> : T { }