12 lines
158 B
C#
Raw Permalink Normal View History

// 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 ();
}