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

cs0612.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33144f917915b1740e9cd2f488554f07191cf4ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0612.cs: `A.Value' is obsolete
// Line: 13
// Compiler options: -warnaserror

class A {
    [System.Obsolete]
    int Value {
        set {
        }
    }
    
    public A () {
        Value = 4;
    }
}