fixed bug in jpeg2000 decoding
[swftools.git] / lib / as3 / err / interface5.as
1 package {
2     interface A {
3         function f()
4     }
5     interface B {
6         function f(x)
7     }
8
9     public class C implements A,B
10     {
11         // ambigious definition (or: B.f not implemented)
12         public function f() {}
13     }
14 }