a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
234 B
C#
22 lines
234 B
C#
class A
|
|
{
|
|
public static int Main ()
|
|
{
|
|
if (new B<object> () [4] != 2)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
public class B<T> {
|
|
public int this[T key] {
|
|
get { return 1; }
|
|
}
|
|
|
|
public int this[object key] {
|
|
get { return 2; }
|
|
}
|
|
}
|
|
|