fixed bug in jpeg2000 decoding
[swftools.git] / lib / as3 / err / super.as
1 package {
2     public class A {
3         function A() {
4         }
5     }
6     public class Main {
7         public var x;
8         public function f() {
9         }
10         function Main() {
11             this.x = 3; // error: access to instance variable before super()
12             this.f()
13             super();
14             super(); // error: super called twice
15         }
16     }
17 }