| Index: frog/tests/await/src/Conditional2NegativeTest.dart
|
| diff --git a/frog/tests/await/src/Conditional2NegativeTest.dart b/frog/tests/await/src/Conditional2NegativeTest.dart
|
| deleted file mode 100644
|
| index bc65d134c5223912757421bbbf612d12804d2c4e..0000000000000000000000000000000000000000
|
| --- a/frog/tests/await/src/Conditional2NegativeTest.dart
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -// Copyright (c) 2011, 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.
|
| -
|
| -// Await within a conditional - the branch non-taken.
|
| -
|
| -#import("await_test_helper.dart");
|
| -
|
| -main() {
|
| - var x;
|
| - if (x != null) {
|
| - final f = futureOf(4);
|
| - x = await f;
|
| - } else {
|
| - x = 3;
|
| - }
|
| - Expect.equals(4, x);
|
| -}
|
|
|