Main.hx 95 B

1234567
  1. class Main {
  2. static function main() {
  3. Type.allEnums(Foo);
  4. }
  5. }
  6. enum abstract Foo(String) {}