blob: f93e2ccc2c05af4d68185f53662150a2f2e59a65 [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 An identifier expression that denotes a constant variable is a
* constant expression.
* A simple or qualified identifier denoting a class or a type alias is a
* constant expression.
* @description Checks that an identifier expression that denotes a constant variable
* can be assigned to a constant variable.
* @author kaigorodov
* @reviewer rodionov
*/
const a = 1;
const b = a;
main() {
print(b);
}