blob: 87acdfab6e546e7efc8c3a3b5c7c9d22d6f4afa5 [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.
* typeParameter: metadata identifier (extends type)? ;
* typeParameters: '<' typeParameter (',' typeParameter)* '>' ;
* @description Checks that a compile-time error is produced when "extends" keyword
* is not spelled correctly and is not followed with "type".
* @compile-error
* @author kaigorodov
* @reviewer iefremov
*/
class C<T extend >{}
main() {
try {
new C();
} catch(x){}
}