blob: 617ec07544acc9324651c1fc61e2b1015cf110c1 [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 declaration statement T id; must end
* with a semicolon.
* @compile-error
* @author vasya
*/
class T {}
main() {
T id
}