[Nice-commit] Nice/testsuite/compiler/methods integer.testsuite,1.6,1.7
Brought to you by:
bonniot
From: <ar...@us...> - 2003-06-14 17:43:48
|
Update of /cvsroot/nice/Nice/testsuite/compiler/methods In directory sc8-pr-cvs1:/tmp/cvs-serv2218/F:/nice/testsuite/compiler/methods Modified Files: integer.testsuite Log Message: The variable=value and variable=constant patterns are not a valid syntax. Index: integer.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/methods/integer.testsuite,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** integer.testsuite 14 Jun 2003 16:21:26 -0000 1.6 --- integer.testsuite 14 Jun 2003 17:43:45 -0000 1.7 *************** *** 63,68 **** int fib(int n); fib(n) = fib(n-2) + fib(n-1); ! fib(n=1) = 1; ! fib(n=2) = 1; /// PASS --- 63,68 ---- int fib(int n); fib(n) = fib(n-2) + fib(n-1); ! fib(1) = 1; ! fib(2) = 1; /// PASS *************** *** 70,75 **** String toStr(char); toStr(c@char) = ""; ! toStr(c='a') = "a"; ! toStr(c='b') = "b"; /// FAIL --- 70,75 ---- String toStr(char); toStr(c@char) = ""; ! toStr('a') = "a"; ! toStr('b') = "b"; /// FAIL |