blob: b7f80e8bfe3586e790df7e87edf54afc5a25c917 [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 trying
* to use a type parameter with type arguments .
* @compile-error
* @author iefremov
* @reviewer kaigorodov
*/
class C<T, U<T>>{}
main() {
try {
new C<int, int>();
} catch(x){}
}