a7a73e23b4
Closes #39659. Bug: http://dartbug.com/39659 Change-Id: Ibf54cf25ed9593c33e3d6576bab345070bb44d6c Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/128669 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com>
14 lines
339 B
Dart
14 lines
339 B
Dart
// Copyright (c) 2019, 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.
|
|
|
|
// This is a regression test for http://dartbug.com/39659.
|
|
|
|
foo() {
|
|
throw bar();
|
|
}
|
|
|
|
String? bar() => "asdf";
|
|
|
|
main() {}
|