blob: 5360fa7aa1f0e495ed48b4bd8a523f091820ebc4 [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.
/*@testedFeatures=inference,error*/
library test;
test() async {
String s;
for (int x in /*@error=InvalidAssignment*/ s) {}
await for (int x in /*@error=InvalidAssignment*/ s) {}
int y;
for (y in /*@error=InvalidAssignment*/ s) {}
await for (y in /*@error=InvalidAssignment*/ s) {}
}
main() {}