blob: f89ba6d5f4a5bf68593587e7f88bdd3a7326f2f5 [file] [log] [blame]
// Copyright (c) 2018, 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.7
main() {
// This call is on the stack when the error is thrown.
/*1:main*/ test();
}
// TODO(34942): Step 2 should point to the body block.
@pragma('dart2js:noInline')
test /*2:test*/ () async {
/*4:test*/ throw '>ExceptionMarker<';
}