[Nice-commit] Nice/testsuite/compiler/packages nicei.testsuite,1.5,1.6
Brought to you by:
bonniot
From: <ar...@us...> - 2004-01-18 03:33:40
|
Update of /cvsroot/nice/Nice/testsuite/compiler/packages In directory sc8-pr-cvs1:/tmp/cvs-serv5036/F:/nice/testsuite/compiler/packages Modified Files: nicei.testsuite Log Message: Fix for bug #879027(printing of strings with escaped chars). Index: nicei.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/packages/nicei.testsuite,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nicei.testsuite 30 Nov 2003 14:24:35 -0000 1.5 --- nicei.testsuite 18 Jan 2004 03:33:37 -0000 1.6 *************** *** 92,93 **** --- 92,104 ---- /// package b import a {} + + /// PASS + /// package a + /// toplevel + let String s = "abc\n"; + let String t = """abc + def"""; + + /// package b import a + assert s.equals("abc\n"); + assert t.equals("abc\ndef"); |