blob: 1a5fa33362f0ff82b830d69833acbe64eeb71450 [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 type of the condition expression in
* an if element may not be assigned to bool.
*
* @description Checks that it is a static error when the type of the condition
* expression in an if element may not be assigned to bool
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=constant-update-2018
main() {
[if ("not bool") 1]; //# 01: compile-time error
<int>[if ("not bool") 1]; //# 02: compile-time error
const [if ("not bool") 1]; //# 03: compile-time error
const <int>[if ("not bool") 1]; //# 04: compile-time error
}