// cs0619.cs: 'I' is obsolete: '' // Line: 13 using System; [Obsolete("", true)] interface I { } class A { int this [I index] { get { return 15; } } }