blob: 740a9e4b8655181b73c505e1ac84303fdc3820c1 [file] [log] [blame]
// Copyright (c) 2017, 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
void main() {
/*1:main*/ test1();
}
Future<void> test1 /*ddk.2:test1*/ () /*ddc.2:test1*/ async {
await /*3:test1*/ test2();
}
Future<void> test2 /*ddk.4:test2*/ () /*ddc.4:test2*/ async {
/*5:test2*/ throw '>ExceptionMarker<';
}