blob: 00323fe01d37c2eec48df8d99262ecaec83b78c1 [file] [log] [blame]
/*
* Copyright (c) 2018, 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.
*/
/**
* @assertion It is a static error when the iterable type of the iterator in a
* synchronous for-in element may not be assigned to the for-in variable's type.
*
* @description Checks that it is a static error when the iterable type of the
* iterator in a synchronous for-in element may not be assigned to the for-in
* variable's type.
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=constant-update-2018
main() {
[for (int i in ["not", "int"]) i]; //# 01: compile-time error
[for (int i in [3.14, 1.0]) i]; //# 02: compile-time error
}