blob: b3ed1ba5e28ee0b67a572545bf9bf8b91b85f45c [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 variable declaration statement declares a new local variable.
* localVariableDeclaration:
* initializedVariableDeclaration ’;’ .
* @description Checks that the variable created by such statement is not
* available in a scope that encloses the one it was declared in.
* @static-warning
* @author iefremov
* @reviewer rodionov
*/
import "../../Utils/expect.dart";
main() {
try {
{
var id;
}
id = null; /// static type warning
Expect.fail("NoSuchMethodError expected when calling undefined setter.");
} on NoSuchMethodError catch (ex) {}
}