blob: 6154412acfdd93c5875e0c7ee3ad2d17a1d0c566 [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 class
* can be assigned to a constant variable.
* @author kaigorodov
* @reviewer rodionov
*/
class C {}
const a = String;
const b = int;
const c = List;
const c2 = Map;
const d = C;
main() {
print(a);
print(b);
print(c);
print(c2);
print(d);
}