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