Main.hx 267 B

123456789101112131415
  1. interface Interface {
  2. @:overload function toBeImplemented():Void;
  3. @:overload public function toBeImplemented(i:Int):Void;
  4. }
  5. @:keep
  6. abstract class Abstract implements Interface {}
  7. class NotAbstract extends Abstract {}
  8. class Main {
  9. static function main() {
  10. }
  11. }