blob: 733d21128660e9b583dd76acccc481400bcc827f [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 non-constant map literal cannot be assigned to
* a constant variable.
* @author iefremov
* @compile-error
* @reviewer rodionov
*/
const a = {"a" : "b"};
main() {
try {
print(a);
} catch(x) {}
}