B.hx 106 B

12345678910
  1. extern class A {
  2. function new();
  3. }
  4. class B extends A {
  5. function new() {
  6. trace(this);
  7. super();
  8. }
  9. }