summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0657-5.cs
blob: a0ca7b4ec574db7db3e0e20770a092f7394ea4cf (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0657: `assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `field'. All attributes in this section will be ignored
// Line: 9
// Compiler options: -warnaserror

using System;

public enum E
{
    [assembly: CLSCompliant (false)]
    item
}