Main.hx 164 B

1234567891011121314
  1. class Main {
  2. static function main() {
  3. test();
  4. #if !macro
  5. $type(42);
  6. #end
  7. }
  8. static macro function test() {
  9. 1 = 0;
  10. $type(42);
  11. return macro {};
  12. }
  13. }