blob: 9c38a60a7e2395c2181eecb28bc46bb93bc01528 [file] [log] [blame]
library test;
import 'dart:async';
T f<T>() => throw '';
class B {
void operator []=(int x, String y) {}
}
class C extends B {
void operator []=(Object x, Object y) {}
void h() {}
}
main() {}