blob: 1b67fb0ce06191c6c4d19f90f791893f7738bf34 [file] [log] [blame]
/*
* Copyright (c) 2011, 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 A literal string where any interpolated expression is a
* compile-time constant that evaluates to a numeric, string or boolean value or to null,
* is a constant expression.
* @description Checks that a string literal that involves string interpolation,
* that evaluates to a bool value, but not a constant expression,
* cannot be assigned to a constant variable.
* @compile-error
* @author msyabro
* @reviewer iefremov
*/
const i1 = "${1 is int}";
main() {
try {
print(i1);
} catch(x) {}
}