summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0612.cs
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;
    }
}