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

cs0619-38.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 312c21ebb03e322a4b79f76c135234ca6d62cd74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0619.cs: 'ObsoleteEnum.value_B' is obsolete: 'ooo'
// Line: 14

using System;

[Obsolete("ooo", true)]
enum ObsoleteEnum
{
    value_A
}

class C
{
    static ObsoleteEnum oe = ObsoleteEnum.value_A;
}