[Nice-commit] Nice/testsuite/compiler/methods integer.testsuite,1.12,1.13
Brought to you by:
bonniot
From: <ar...@us...> - 2003-09-29 17:40:31
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods In directory sc8-pr-cvs1:/tmp/cvs-serv25836/F:/nice/testsuite/compiler/methods Modified Files: integer.testsuite Log Message: Testcase that was broken before the fix for bug #803972 Index: integer.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/methods/integer.testsuite,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** integer.testsuite 3 Sep 2003 22:32:10 -0000 1.12 --- integer.testsuite 29 Sep 2003 17:40:17 -0000 1.13 *************** *** 213,214 **** --- 213,220 ---- g(m<0, n) = 1; g(m>=0, n) = 1; + + /// FAIL + /// Toplevel + void foo(int n); + foo(n<=1) {} + foo(n>=0) {} |