12 lines
310 B
C#
12 lines
310 B
C#
|
// 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
|
||
|
}
|