blob: 5a33bc24073cbf16e1196c02eacb7b189edcce4a [file] [log] [blame]
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 h() {}
void operator []=(Object x, Object y) {}
}
main() {}