Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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; }
}
}