[Nice-commit] Nice/testsuite/compiler/classes typeParameters.testsuite,1.17,1.18
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-07-16 10:02:12
|
Update of /cvsroot/nice/Nice/testsuite/compiler/classes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9811/testsuite/compiler/classes Modified Files: typeParameters.testsuite Log Message: When there is a class constraint, report undeclared class type parameters. Index: typeParameters.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/classes/typeParameters.testsuite,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** typeParameters.testsuite 16 Jun 2004 10:00:33 -0000 1.17 --- typeParameters.testsuite 16 Jul 2004 10:01:32 -0000 1.18 *************** *** 302,305 **** --- 302,314 ---- <String S> class B<S> extends A<S> {} + /// FAIL + // bug #992007 + /// Toplevel + <A,B | B <: A> class Foo<B,X> + { + A a; + void foo(B b) { a = b; } + } + /// PASS A<String> a; |