blob: dcae9ea29810f3d962fdd9596e7f69d850a01fd1 [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 operator []=(Object x, Object y) {}
void h() {}
}
main() {}