A.hx 100 B

123456789
  1. extern class A {
  2. function new(v:Any);
  3. }
  4. class B extends A {
  5. function new() {
  6. super(this);
  7. }
  8. }