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

using System;

[Obsolete("Do not use it", true)]
class A {
}

class B {
    static A _a = new A ();
}