blob: 2ee3f62e2041e4b4ea57e718d4a8b6fcfc1a195c [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 newly introduced variable may shadow the one
* declared in an enclosing scope but doesn't replace it.
* @author rodionov
* @reviewer iefremov
*/
import '../../../Utils/expect.dart';
main() {
String id = "foo";
{
int id = 1;
Expect.equals(1, id);
}
Expect.equals("foo", id);
}