[Nice-commit] Nice/testsuite/compiler/methods constrained.testsuite,NONE,1.1
Brought to you by:
bonniot
|
From: <ar...@us...> - 2003-04-28 11:39:44
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods
In directory sc8-pr-cvs1:/tmp/cvs-serv23595/F:/nice/testsuite/compiler/methods
Added Files:
constrained.testsuite
Log Message:
Source of bug #728844
--- NEW FILE: constrained.testsuite ---
///PASS bug
///Toplevel
class A{}
class B extends A{}
interface I<A T>{}
class X<T | A <: T> implements I<T>{}
void foo(I<B>);
|