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