[Nice-commit] Nice/testsuite/compiler/methods primitive.testsuite,1.1,1.2
Brought to you by:
bonniot
From: <ar...@us...> - 2003-07-15 11:11:38
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods In directory sc8-pr-cvs1:/tmp/cvs-serv4863/F:/nice/testsuite/compiler/methods Modified Files: primitive.testsuite Log Message: Stricter checks of integer (comparison) patterns. Index: primitive.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/methods/primitive.testsuite,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** primitive.testsuite 16 Apr 2003 18:38:58 -0000 1.1 --- primitive.testsuite 15 Jul 2003 11:11:23 -0000 1.2 *************** *** 2,3 **** --- 2,15 ---- ///Toplevel toString(/*/// FAIL HERE */ i@int) = ""; + + /// FAIL + ///Toplevel + <T> void foo(T t); + foo(t) {} + foo(/*/// FAIL HERE */10) {} + + /// FAIL + ///Toplevel + <T> void foo(T t); + foo(t) {} + foo(/*/// FAIL HERE */n<3) {} |