* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / cs0619-2.cs
blob2dfbdb923a660e79cd76c7597e2320098db612b1
1 // cs0619-2.cs: `ObsoleteIface' is obsolete: `Do not use it.'
2 // Line: 12
4 using System;
6 [Obsolete("Do not use it.", true)]
7 interface ObsoleteIface {
11 interface Ex: ObsoleteIface