added additional tests
[swftools.git] / lib / as3 / err / staticinherit.as
diff --git a/lib/as3/err/staticinherit.as b/lib/as3/err/staticinherit.as
new file mode 100644 (file)
index 0000000..c7c43fb
--- /dev/null
@@ -0,0 +1,13 @@
+package package1 {
+    public class A {
+        public static function f() 
+        {
+        }
+    }
+    public class B extends A {
+        public function g() 
+        {
+            super.f()
+        }
+    }
+}