blob: d213b77fdb4b051649ef16a4ab50ba576fc263dc [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 class declaration, or type alias G may be generic, this is,
* G may have formal type parametera declared.
* . . .
* typeParameter:
* metadata identifier (extends type)?
* ;
* typeParameters:
* '<' typeParameter (',' typeParameter)* '>'
* ;
* @description Checks that closing bracket is a must.
* @compile-error
* @author iefremov
* @reviewer kaigorodov
*/
class C<T{}
main() {
new C();
}