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

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

using System;

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