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: 84b1d06cef01c85902d0288b87941ca0a557f9f5 (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() {}
}