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: a9dbb2680784ed01988632a0ea81de4a27a6f1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0612: `A.Value' is obsolete
// Line: 13
// Compiler options: -warnaserror

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