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

cs1721.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 454dd0fda7361ace3d9ab45f35456dfef0f1065f (plain)
1
2
3
4
5
6
7
8
9
10
// cs1721: type in interface list is not a interface, and the class B already has a base class
//
class A1 {
}

class A2 {
}

class B : A1, A2 {
}