update readme (#21797)
[mono-project.git] / mcs / errors / cs0619-11.cs
blob38df73ba1b958736f7a7d14001b582ffe808a7f4
1 // CS0619: `I' is obsolete: `Do not use it.'
2 // Line: 15
4 using System;
6 [Obsolete("Do not use it.", true)]
7 interface I
11 class A
15 class C: A, I