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

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

struct S
{
    [param: Obsolete]
    int field;
}