blob: b12e031a48355a539cad391780f08675e3d3f17b [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 boolean is a constant expression.
* @description Checks that various literal booleans can be elements of a constant list literal
* and are, therefore, constant expressions.
* @author iefremov
* @reviewer rodionov
*/
import "../../Utils/expect.dart";
final constList = const [
true,
false
];
main() {
Expect.isTrue(constList is List);
}