12 lines
143 B
C#
Raw Permalink Normal View History

// CS0619: `I' is obsolete: `Do not use it'
// Line: 12
using System;
[Obsolete("Do not use it", true)]
interface I {
}
class B {
I i;
}