extended tests
[swftools.git] / lib / as3 / ok / interface.as
index f7efeb0..956baf7 100644 (file)
@@ -1,5 +1,6 @@
 package {
     import flash.display.MovieClip
+    import flash.utils.ByteArray
     public interface I1 {
         function f()
     }
@@ -12,8 +13,10 @@ package {
         function Main() {
             var x:I1 = new TestI1();
             x.f();
+            trace("[exit]");
         }
     }
     public interface I2 {
+       function init(key:ByteArray):void;
     }
 }