blob: 572bbf413d5d75dcd29f3e83e2039dccbb7996b7 [file]
// Copyright (c) 2022, 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 The new rules are incorporated into the existing productions for
/// declaring variables like so:
///
/// localVariableDeclaration ::=
/// | metadata initializedVariableDeclaration ';' // Existing.
/// | metadata patternVariableDeclaration ';' // New.
///
/// forLoopParts ::=
/// | // Existing productions...
/// | metadata ( 'final' | 'var' ) outerPattern 'in' expression // New.
/// As with regular for-in loops, it is a compile-time error if the type of
/// expression in a pattern-for-in loop is not assignable to Iterable<dynamic>.
///
/// @description Check that it is a compile-time error if a final variable is
/// assigned in a for-in loop. Test a list pattern
/// @author sgrekhov22@gmail.com
class Meta {
const Meta();
}
main() {
for (@Meta() final [a1, b1] in [[1, 2]]) {
a1 = 42;
// ^^
// [analyzer] unspecified
// [cfe] unspecified
b1 = 42;
// ^^
// [analyzer] unspecified
// [cfe] unspecified
}
for (final [int a2, b2, ...List<int> c2] in [[3, 4, 5, 6]]) {
a2 = 42;
// ^^
// [analyzer] unspecified
// [cfe] unspecified
b2 = 42;
// ^^
// [analyzer] unspecified
// [cfe] unspecified
c2 = [1, 2];
// ^^
// [analyzer] unspecified
// [cfe] unspecified
}
for (final <int>[a3, b3, ...c3] in [[5, 6, 7, 8]]) {
a3 = 42;
// ^^
// [analyzer] unspecified
// [cfe] unspecified
b3 = 42;
// ^^
// [analyzer] unspecified
// [cfe] unspecified
c3 = [1, 2];
// ^^
// [analyzer] unspecified
// [cfe] unspecified
}
}