blob: c3b1ed7ac27c9ef72aa2278174f3f897a17b17ec [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 constant variable is a variable whose declaration includes the modifier
* const. A constant variable is always implicitly final.
* @description Checks that a NoSuchMethodError occurs and a static warning is given
* when a constant local variable is assigned a new value after being initialized at declaration.
* @static-warning
* @author msyabro
* @reviewer iefremov
*/
import "../../Utils/expect.dart";
main() {
const foo = "foo";
try {
foo = "bar"; /// static warning
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch(ok) {}
}