blob: 520c2ec7b835189e7ddee1359f428b70f949077b [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 a compile-time error is produced when "extends"
* is not followed with "type".
* @compile-error
* @author kaigorodov
* @reviewer iefremov
*/
class C<T extends >{}
main() {
new C();
}