blob: 96335ddf8f9ebe7d20bc6e7e0e915a88e3ca7f41 [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 type T in a variable declaration can be
* parameterized.
* @author kaigorodov
* @reviewer iefremov
*/
class T<K,V> {}
main() {
T<int, String> id;
}