blob: f51175c11910faf6317eaecd7f284dafbf994c3f [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 a variable is introduced into the scope
* after a variable declaration statement is evaluated. Checks that a variable name
* is not available in a local function that is used in the initializing expression
* of that variable's declaration.
* @compile-error
* @author iefremov
* @reviewer rodionov
*/
main() {
try {
var x;
var f = () {x = f};
} catch(x) {}
}