blob: 3758fe18d9c3d838a1d3b9ab9b1f554b952688e5 [file] [log] [blame]
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:async';
extension type E(Future<String> it) implements Future<String> {}
foo(FutureOr<String> x) {}
E bar() => throw 0;
test() => foo(bar()); // Ok.