blob: c172214961d9e51f0f6c01b9ebe7c9d7012d59dc [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.
import 'package:expect/expect.dart';
main() {
test1();
}
@NoInline()
test1() async {
await null;
/*1:test1*/ test2();
}
@NoInline()
test2() {
/*2:test2*/ throw '>ExceptionMarker<';
}