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

cs3011.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a28549f636e44ad27a9f4fe95834545821d884d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs3011.cs: 'CLSClass.Error(System.IComparable)': only CLS-compliant members can be abstract
// Line: 12

using System;
[assembly:CLSCompliant (true)]

public abstract class CLSClass {
        [CLSCompliant (false)]
        internal abstract int Valid ();
    
        [CLSCompliant (false)]
        protected abstract void Error (IComparable arg);
}