[Nice-commit] Nice/testsuite/compiler/methods primitive.testsuite,1.3,1.4
Brought to you by:
bonniot
From: <ar...@us...> - 2003-12-19 00:48:28
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods In directory sc8-pr-cvs1:/tmp/cvs-serv22337/F:/nice/testsuite/compiler/methods Modified Files: primitive.testsuite Log Message: Testcase for incorrect codegeneration for at array type patterns. Index: primitive.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/methods/primitive.testsuite,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** primitive.testsuite 3 Oct 2003 13:57:15 -0000 1.3 --- primitive.testsuite 19 Dec 2003 00:48:25 -0000 1.4 *************** *** 19,20 **** --- 19,27 ---- foo(t) {} foo(/*/// FAIL HERE */n<3) {} + + /// PASS bug + assert foo(['a']); + /// Toplevel + boolean foo(char[?] cbuf); + foo(Array cbuf) = true; + foo(null) = false; |