blob: a0fdfbb2efa6e042e287958f8177eabc7ba33891 [file] [log] [blame] [edit]
// 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, also known as a local variable
/// declaration, has the following form:
/// ⟨localVariableDeclaration⟩ ::=
/// ⟨metadata⟩ ⟨initializedVariableDeclaration⟩ ‘;’
///
/// Each local variable declaration introduces a local variable into the current
/// scope.
///
/// @description Checks that a declared local variable is also available in the
/// nested scopes.
/// @author rodionov
main() {
int id;
{
id = 1;
for (int i = 0; i < 1; i++) {
id = 2;
try {
id = 3;
} catch (ok) {}
}
}
}