blob: b9815eec1fbb842d1d5a233cf10621f8333e32ff [file] [log] [blame]
// @dart = 2.9
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() {}