summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0657-10.cs
blob: 4567237ec0adf8d0fbff6956b585fca400a1b6b9 (plain)
1
2
3
4
5
6
7
8
9
// CS0657: `param' 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: 7
// Compiler options: -warnaserror

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