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

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

using System;
[assembly:CLSCompliant (true)]

public abstract class CLSClass {
        [CLSCompliant (false)]
        public abstract int this[long index] { set; }
}