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: 2324903de7a99ff3d0cd1cc7665c449bfea73274 (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;
    }
}