summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0657-15.cs
blob: c0360804e6004f6e3ed26b02275659ef2d6335f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0657: `property' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `event'. All attributes in this section will be ignored
// Line: 9
// Compiler options: -warnaserror

using System;

class C
{
    [property: Obsolete]
    event ResolveEventHandler field { 
        add {}
        remove {}
    }
}