blob: 023f98989e1b3ce83d8584c96dbf31b0933d5c8b [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 'var id;' declared in a block is not
* available in a scope that encloses this block.
* @compile-error
* @author iefremov
* @reviewer rodionov
*/
main() {
{
var id;
}
id = null;
}