[Nice-commit] Nice/testsuite/compiler/abstractInterfaces classTypeParameter.testsuite,NONE,1.1
Brought to you by:
bonniot
|
From: <bo...@us...> - 2003-04-08 18:46:12
|
Update of /cvsroot/nice/Nice/testsuite/compiler/abstractInterfaces
In directory sc8-pr-cvs1:/tmp/cvs-serv32176/testsuite/compiler/abstractInterfaces
Added Files:
classTypeParameter.testsuite
Log Message:
It should be possible to constrain class type parameters to implement abstract
interfaces.
--- NEW FILE: classTypeParameter.testsuite ---
/// PASS bug
/// Toplevel
abstract interface I {}
class A1<I T> {}
class A2<T | T : I> {}
|