Token propagation for normal assignments fixed. Tokens do not "age" with
[IRC.git] / Robust / src / Tests / OwnershipAnalysisTest / test01 / test01.java
index 2072c0b439d1702f7c18331de1fda592224179b8..8b843453d3311ee1856a245effc719a5b87287cf 100644 (file)
@@ -59,12 +59,23 @@ task Startup( StartupObject s{ initialstate } ) {
        a.x   = new Foo();
     }
 
+    /*
     Foo b;
     while( false ) {
        Foo c = new Foo();
        c.x = b;
        b = c;
     }
+    */
+
+    /*
+    Foo a = new Foo();
+    Foo b = new Foo();
+    Foo c = new Foo();
+
+    a.x = b;
+    b.x = c;    
+    */
 
     taskexit( s{ !initialstate } );
 }