blob: d24c4c5fe8e786a1598106c8208bb9fb1673c15e [file] [log] [blame]
// Copyright (c) 2020, 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.
// @dart = 2.9
import "package:expect/expect.dart";
Future<String> f() async {
throw 'f';
}
Future<String> g() async {
try {
// Should obtain the `Future<String>`, await it, then throw.
return f();
} catch (e) {
// Having caught the exception, we return a value.
return 'g';
}
}
void main() async {
Expect.equals('g', await g());
}