blob: 2dd9e869c3fa22fb6612cc52b1cae2e1557ad070 [file] [log] [blame]
// @dart = 2.9
library test;
import 'dart:async';
T f<T>() => null;
class B {
void operator []=(int x, String y) {}
}
class C extends B {
void h() {}
void operator []=(Object x, Object y) {}
}
main() {}