13 lines
181 B
C#
Raw Permalink Normal View History

// CS0619: `ObsoleteIface' is obsolete: `Do not use it.'
// Line: 12
using System;
[Obsolete("Do not use it.", true)]
interface ObsoleteIface {
}
interface Ex: ObsoleteIface
{
}