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

cs0657-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f725e4eac403fd717bba9f6b710126a2d65b0b24 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0657-4.cs: `param' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `assembly, module'
// Line : 6

using System;

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