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

cs0528.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a09505bdfbf5739c24216ab25d1f2ff00ba01ef1 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0528:  `A' is already listed in interface list
// Line: 6
interface A {
        void stuff ();
}
class C: A, A {
        public void stuff () {}
        static void Main() {}
}