summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0619-6.cs
blob: 38d612fc8b49647d0f35c4b89d52bfdf4fea2747 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0619: `A._value' is obsolete: `Do not use it'
// Line: 9

class A {
    [System.Obsolete("Do not use it", true)]
    int _value;
    
    public A () {
        _value = 4;
    }
}