[Nice-commit] Nice/testsuite/compiler/syntax expressions.testsuite,1.4,1.5
Brought to you by:
bonniot
From: <ar...@us...> - 2003-10-01 18:11:44
|
Update of /cvsroot/nice/Nice/testsuite/compiler/syntax In directory sc8-pr-cvs1:/tmp/cvs-serv8204/F:/nice/testsuite/compiler/syntax Modified Files: expressions.testsuite Log Message: Implemented muli line string literals. Index: expressions.testsuite =================================================================== RCS file: /cvsroot/nice/Nice/testsuite/compiler/syntax/expressions.testsuite,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** expressions.testsuite 28 May 2003 09:04:58 -0000 1.4 --- expressions.testsuite 1 Oct 2003 18:11:39 -0000 1.5 *************** *** 21,22 **** --- 21,27 ---- /// TOPLEVEL String->String->void f4(String x) = String y => String z => {}; + + /// PASS + assert """abc + def\nghi + xyz""".equals("abc\n def\nghi\n xyz"); |