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

cs1965.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f964c5285a6ff96af68063677501ec6e594e47ec (plain)
1
2
3
4
5
6
// CS1965: Class `C' cannot derive from the dynamic type
// Line: 4

class C : dynamic
{
}