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

cs1966.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad76aa5cf1dd053709c1064cffc6853102756d01 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1966: `C': cannot implement a dynamic interface `I<dynamic>'
// Line: 8

interface I<T>
{
}

class C : I<dynamic>
{
}