updated .gitignore, new as3 test cases, build system fixes
[swftools.git] / lib / as3 / ok / staticself.as
diff --git a/lib/as3/ok/staticself.as b/lib/as3/ok/staticself.as
new file mode 100644 (file)
index 0000000..88bc6dc
--- /dev/null
@@ -0,0 +1,17 @@
+package 
+{
+    public class T
+    {
+    }
+    public class Main
+    {
+       public static const t = new T();
+       public static const BASE = new Main();
+
+       function Main() 
+       {
+           trace("ok");
+           trace("[exit]");
+       }
+    }                  
+}