blob: 4affb6552dc9ca54991e27ca6dba8d07785e69eb [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 annotation grammar:
* type:
* typeName typeArguments?
* ;
* typeName:
* qualified
* ;
* typeArguments:
* '<' typeList '>'
* ;
* typeList:
* type (',' type)*
* ;
* @description Checks that it is a compile-time error when the type arguments
* are only space delimited.
* @compile-error
* @author iefremov
* @reviewer rodionov
*/
class G<A, B> {
G() {}
}
main() {
try {
G<int double> g;
} catch(x){}
}