blob: 9e2f4b206a3bbcd05aa6c9b29bdb82c38c81c139 [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 Static type annotations are used in variable declarations
* (including formal parameters), in the return types of functions and in the
* bounds of type variables. Static type annotations are used during static
* checking and when running programs in checked mode. They have no effect
* whatsoever in production mode.
* type:
* typeName typeArguments?
* ;
* typeName:
* qualified
* ;
* typeArguments:
* '<' typeList '>'
* ;
* typeList:
* type (',' type)*
* ;
* @description Checks that it is a compile-time error when the opening angle
* bracket in a static type annotation's type argument list is missing.
* @compile-error
* @author iefremov
* @reviewer rodionov
*/
class Generic<T> {
Generic() {}
}
main() {
try {
Generic int> t;
} catch (x) {}
}