blob: e39959054e90fff7db13fd3f5daae2b9aadc1933 [file] [log] [blame]
// 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.
// @dart=2.9
/*@testedFeatures=inference*/
library test;
test(dynamic o) async {
for (var /*@type=dynamic*/ x in o) {}
await for (var /*@type=dynamic*/ x in o) {}
int y;
for (y in o) {}
await for (y in o) {}
}
main() {}