blob: 930a9fa12031c3badba2f4139234979819fa5f0e [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 simple or qualified identifier denoting a top-level function or a static
* method is a constant expression.
* @description Checks that various expressions of the specified forms can be used in
* a constant list literal and are, therefore, constant expressions.
* @author rodionov
* @reviewer kaigorodov
*/
foo() {}
class C {
static int stMethod() {}
static final lst = const [stMethod, foo, main];
}
final lstTop = const [C.stMethod, foo, main];
main() {
final lstLocal = const [C.stMethod, foo, main];
}