do not assert on ToString result
[mcs.git] / errors / cs0619-5.cs
blob4c1dc32c5dc09876e3be734c890a35711b36b4c0
1 // cs0619-5.cs: `A' is obsolete: `Do not use it'
2 // Line: 12
4 using System;
6 [Obsolete("Do not use it", true)]
7 class A {
10 class B {
11 static A _a = new A ();