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