append [exit] after end of output
[swftools.git] / lib / as3 / ok / getset.as
index 49a3c7f..ecff595 100644 (file)
@@ -8,6 +8,9 @@ package package2 {
             trace("ok 1/2");
             return 1;
         }
+
+        public function set n(n:uint) {
+        }
     }
 }
 
@@ -19,6 +22,8 @@ package {
         function Main() {
             var t:Test = new Test();
             t.x++;
+            t.n = 3;
+            trace("[exit]");
         }
     }
 }