blob: 8ed1d0b00531e5a6a2b907f3c554b9a640445547 [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.
// @dart = 2.9
/// @assertion Each element in a list can be one of a few things:
/// A normal expression.
/// An if element.
/// A for element.
/// The body of if and for elements use listElement, not expression, which
/// allows nesting.
///
/// @description Checks that it is a compile error if the body of the 'if' and
/// 'for' elements is an expression
/// @author sgrekhov@unipro.ru
main() {
bool b = true;
List<int> listInt = [
if (b) {1;}, //# 01: syntax error
if (!b) {1}, //# 02: compile-time error
for (int i = 5; i < 10; i++) {i} //# 03: compile-time error
];
}