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