| Index: pkg/front_end/testcases/inference/downwards_inference_for_each.dart
|
| diff --git a/pkg/front_end/testcases/inference/downwards_inference_for_each.dart b/pkg/front_end/testcases/inference/downwards_inference_for_each.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..cdd78e00df4fa2231395416ceda1ba2f2d6b6228
|
| --- /dev/null
|
| +++ b/pkg/front_end/testcases/inference/downwards_inference_for_each.dart
|
| @@ -0,0 +1,18 @@
|
| +// 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.
|
| +
|
| +/*@testedFeatures=inference*/
|
| +library test;
|
| +
|
| +import 'dart:async';
|
| +
|
| +abstract class MyStream<T> extends Stream<T> {
|
| + factory MyStream() => null;
|
| +}
|
| +
|
| +Future main() async {
|
| + for (int /*@promotedType=none*/ x in /*@typeArgs=int*/ [1, 2, 3]) {}
|
| + await for (int /*@promotedType=none*/ x
|
| + in /*@typeArgs=int*/ new MyStream()) {}
|
| +}
|
|
|