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

cs3014-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5227bf4be4871986c100e8aaebe3a04d371aa832 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3014-1.cs: 'CLSClass.implicit operator CLSClass(byte)' cannot be marked as CLS compliant because the assembly is not marked as compliant
// Line: 7

using System;

public abstract class CLSClass {
        [CLSCompliant (true)]
        public static implicit operator CLSClass(byte value) {
                return null;
        }
}