Update of /cvsroot/nice/Nice/testsuite/compiler
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4983/testsuite/compiler
Modified Files:
globalVariables.testsuite
Log Message:
Compile global variables lazily, so that all direct dependencies are handled
correctly (not just one level of dependency).
Index: globalVariables.testsuite
===================================================================
RCS file: /cvsroot/nice/Nice/testsuite/compiler/globalVariables.testsuite,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** globalVariables.testsuite 30 Nov 2003 14:24:34 -0000 1.14
--- globalVariables.testsuite 5 Mar 2004 14:07:13 -0000 1.15
***************
*** 144,147 ****
--- 144,155 ----
class QualifiedName { String a; String b; }
+ /// PASS
+ assert s4.equals("1234");
+ /// Toplevel
+ let String s4 = s3 + "4";
+ let String s3 = s2 + "3";
+ let String s2 = s1 + "2";
+ let String s1 = "1";
+
/// FAIL
/// Toplevel
|