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