19 lines
227 B
C#
Raw Normal View History

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