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

cs1722-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97bc476d90fa46597a93c3ca74465f572e74acda (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1722: type in interface list is not a interface, base classes must be listed first
//
class A1 {
}

interface I {
}

class B : I, A1 {
	static void Main () {}
}