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

cs0619-28.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e6bc37ffb6388340cbf4a26ffb42fe8f8addbee (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0619.cs: 'D' is obsolete: 'Do not use it'
// Line: 12

using System;

[Obsolete("Do not use it", true)]
delegate void D();

class B {
    event D e;
}