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: 49114c24414e1ae396e738d316fde9d9c321ef0d (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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)]
        protected abstract void Error (IComparable arg);
}