blob: 1aa76bd0767e061ff75667035ca215889ed25ceb [file] [log] [blame]
/*
* Copyright (c) 2019, 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 An if element:
* It is a compile-time error if the condition expression is not constant or
* does not evaluate to true or false.
*
* @description Checks that it is a compile-time error if the condition
* expression is not constant
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=constant-update-2018
main() {
var x = 1;
List<int> list1 = const [if (x > 0) 1, 1 ]; //# 01: compile-time error
const List<int> list2 = [if (x > 0) 1, 1 ]; //# 02: compile-time error
var list3 = const [if (x > 0) 1, 1, ]; //# 03: compile-time error
var list4 = const <int>[if (x > 0) 1, 1, ]; //# 04: compile-time error
const list5 = [if (x > 0) 1, 1 ]; //# 05: compile-time error
Set<int> set1 = const {if (x > 0) 1, -1 }; //# 06: compile-time error
const Set<int> set2 = {if (x > 0) 1, -1 }; //# 07: compile-time error
var set3 = const {if (x > 0) 1, -1, }; //# 08: compile-time error
var set4 = const <int>{if (x > 0) 1, -1, }; //# 09: compile-time error
const set5 = {if (x > 0) 1, -1 }; //# 10: compile-time error
Map<int, String> map1 = const {if (x > 0) 1: "1"}; //# 11: compile-time error
const Map<int, String> map2 = {if (x > 0) 1: "x"}; //# 12: compile-time error
var map3 = const {if (x > 0) 1: "x"}; //# 13: compile-time error
var map4 = const <int, String>{if (x > 0) 1: "x"}; //# 14: compile-time error
const map5 = {if (x > 0) 1: "x" }; //# 15: compile-time error
}