10 lines
129 B
C#
Raw Permalink Normal View History

// CS1551: Indexers must have at least one parameter
// Line: 8
class Test
{
public int this []
{
set {}
}
}