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

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

using System;

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