blob: 2a0f69c64c926844cd837a901f476a4809e2cb2e [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 It is a compile time error if an element of a constant list
* literal is not a compile-time constant.
* @description Checks that a constant list literal cannot contain non-constant expression.
* @compile-error
* @author kaigorodov
* @reviewer iefremov
*/
class A {
List a = const [1, new Date.now()];
}
main() {
try {
new A();
} catch(x) {}
}