summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3014-8.cs
blob: fae0c539401ea13a0feccf49d55ac1ef4fb31707 (plain)
1
2
3
4
5
6
7
8
9
10
// CS3014: `E2.Foo' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
// Line: 8
// Compiler options: -warnaserror -warn:1

using System;

public enum E2 {
        [CLSCompliant (true)]
        Foo
}