Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs0619-5.cs
1 // CS0619: `A' is obsolete: `Do not use it'
2 // Line: 12
3
4 using System;
5
6 [Obsolete("Do not use it", true)]
7 class A {
8 }
9
10 class B {
11     static A _a = new A ();
12 }