blob: a288dcdd08b0d67da9ee3afde952c27d7922a1e9 [file] [log] [blame]
import 'dart:async';
E bar() => throw 0;
extension type E(Future<String> it) implements Future<String> {}
foo(FutureOr<String> x) {}
test() => foo(bar());