append [exit] after end of output
[swftools.git] / lib / as3 / ok / super.as
index 12583ef..9775c64 100644 (file)
@@ -16,7 +16,7 @@ package {
             super();
         }
     }
-    class F extends D {
+    class F extends E {
         function F() {
             //implicit super call
         }
@@ -25,6 +25,7 @@ package {
     public class Main extends flash.display.MovieClip {
         function Main() {
             new F
+            trace("[exit]");
         }
     }
 }