a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
202 B
C#
16 lines
202 B
C#
// CS1501: No overload for method `this' takes `1' arguments
|
|
// Line: 13
|
|
|
|
public class Blah
|
|
{
|
|
int this [short id, string v] {
|
|
set {}
|
|
}
|
|
|
|
public void Test ()
|
|
{
|
|
dynamic d = 1;
|
|
this [d] = 1;
|
|
}
|
|
}
|