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

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

using System;

enum ObsoleteEnum
{
    value_A,
    [Obsolete("It's obsolete", true)]
    value_B
}

enum E2
{
    aa = ObsoleteEnum.value_A,
    bb = ObsoleteEnum.value_B
}