blob: 10f5f2dd0be102d5be3ee846415a92754793bd69 [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 constant map literal is a constant expression.
* @description Checks that a constant map literal can be an element of
* a constant list literal and is, therefore, a constant expression.
* @author iefremov
* @reviewer rodionov
*/
import "../../Utils/expect.dart";
final constList = const [const {"a" : 1, "b" : 2}];
main() {
Expect.isTrue(constList is List);
}