blob: 9d1e33c396dcf7dde7d04311f4f3a19c94af2ed5 [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 several assignments of variables declared as "T id;"
* that are correct and do not produce static warnings.
* @author vasya
*/
class S {}
class T extends S {}
class C extends T {}
main() {
T id;
id = new C();
id = new T();
bool id1;
id1 = false;
String id2;
id2 = "";
}