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