blob: e3af6e6fcfcd6727df8f0a08c6a5508c0191ca96 [file] [log] [blame] [edit]
// 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, also known as a local variable
/// declaration, has the following form:
/// ⟨localVariableDeclaration⟩ ::=
/// ⟨metadata⟩ ⟨initializedVariableDeclaration⟩ ‘;’
///
/// @description Checks that the type T in a variable declaration can be
/// parameterized.
/// @author kaigorodov
class T<K,V> {}
main() {
T<int, String> id;
}