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

cs1055.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c58dd9d2f6dbb77d48c1464564bb26ea0311db4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs1055.cs: An add or remove accessor expected
// Line: 9

class E
{
    delegate void test();
    event test Event
    {
        bool add;
    }
}