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