1ad6d7995c6f43e1b8def3f0842af3a1c2ca04b4
[swftools.git] / 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 }