Update of /cvsroot/nice/Nice/testsuite/compiler/syntax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21204/F:/nice/testsuite/compiler/syntax
Modified Files:
anonymousFunctions.testsuite
Log Message:
Testcase for compiler NPE on constrained anonymous functions.
Index: anonymousFunctions.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/syntax/anonymousFunctions.testsuite,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** anonymousFunctions.testsuite 13 Oct 2004 18:28:50 -0000 1.10
--- anonymousFunctions.testsuite 13 Oct 2004 18:37:54 -0000 1.11
***************
*** 40,41 ****
--- 40,43 ----
void foobar(boolean b) = assert b;
+ /// PASS bug
+ String s = (<String T>(T x)=>x)("ABC");
|