11 lines
151 B
C#
Raw Normal View History

// CS0542: `Item.this[int]': member names cannot be the same as their enclosing type
// Line: 6
class Item
{
public int this[int i] {
set {}
}
}