dart-sdk/tests/language/return/in_loop_test.dart
Robert Nystrom eb098a5f9e Migrate language_2/return to NNBD.
Change-Id: I3666b69e8371330e2e615aef9fcdecbb1d0753b9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/150471
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Nicholas Shahan <nshahan@google.com>
Reviewed-by: Nicholas Shahan <nshahan@google.com>
2020-06-09 16:31:44 +00:00

26 lines
534 B
Dart

// Copyright (c) 2012, 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.
// Test for a dart2js bug where the live environment was not computed
// right.
import "package:expect/expect.dart";
class A {
foo() {
var x = 0;
while (true) {
if (true) {
return 42;
} else {}
x = bar();
}
}
bar() => 1;
}
main() {
Expect.equals(42, new A().foo());
}