7 lines
139 B
C#
7 lines
139 B
C#
|
// CS100: The parameter name `obj' is a duplicate
|
||
|
// Line: 6
|
||
|
|
||
|
abstract class C
|
||
|
{
|
||
|
public abstract int this [object obj, object obj] => 1;
|
||
|
}
|