[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0619-10.cs
blobfeba056ef2b3024c798759b46a433b234c7d3d2b
1 // CS0619: `ObsoleteClass' is obsolete: `Do not use it.'
2 // Line: 10
4 using System;
6 [Obsolete("Do not use it.", true)]
7 class ObsoleteClass {
10 class C: ObsoleteClass