OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // This is a regression test for issue 2238 | 5 // This is a regression test for issue 2238 |
6 import "dart:async"; | 6 import "dart:async"; |
7 import "package:expect/expect.dart"; | 7 import "package:expect/expect.dart"; |
8 import "package:async_helper/async_helper.dart"; | 8 import "package:async_helper/async_helper.dart"; |
9 | 9 |
10 main() { | 10 main() { |
11 f() async* { | 11 f() async* { |
12 label1: | 12 label1: |
13 label2: | 13 label2: |
14 yield 0; | 14 yield 0; |
15 } | 15 } |
16 | 16 |
17 asyncStart(); | 17 asyncStart(); |
18 f().toList().then((list) { | 18 f().toList().then((list) { |
19 Expect.listEquals([0], list); | 19 Expect.listEquals([0], list); |
20 asyncEnd(); | 20 asyncEnd(); |
21 }); | 21 }); |
22 } | 22 } |
OLD | NEW |