[Nice-commit] Nice/testsuite/compiler/statements/loops break.testsuite,1.3,1.4
Brought to you by:
bonniot
From: <ar...@us...> - 2003-06-13 21:54:33
|
Update of /cvsroot/nice/Nice/testsuite/compiler/statements/loops In directory sc8-pr-cvs1:/tmp/cvs-serv30914/F:/nice/testsuite/compiler/statements/loops Modified Files: break.testsuite Log Message: Don't redefine local variables in existing nice code. Index: break.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/statements/loops/break.testsuite,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** break.testsuite 10 Jun 2003 19:32:57 -0000 1.3 --- break.testsuite 13 Jun 2003 21:54:30 -0000 1.4 *************** *** 25,29 **** for (int i = 0; i < 5; i++) { ! for (int i = 0; i < 5; i++) continue; if (true) continue; --- 25,29 ---- for (int i = 0; i < 5; i++) { ! for (int j = 0; j < 5; j++) continue; if (true) continue; |