blob: e997bf5f232487816fb3e1cae227098fdc035009 [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 library variable is assigned a new value after being initialized at declaration.
* @static-warning
* @author msyabro
* @reviewer iefremov
*/
import "../../Utils/expect.dart";
const foo = true;
main() {
try {
foo = false; /// static warning
Expect.fail("NoSuchMethodError expected");
} on NoSuchMethodError catch(ok) {}
}