blob: 2ba6b440ad759872a1c4f108789725cd5242a6ce [file] [log] [blame]
class C<T> {
List<F> method<F extends T>(List<F> list) => list;
foo<E extends T>(List<E> list) {}
}
main() {}