Main.hx 137 B

12345678910
  1. class Main {
  2. static function main() {
  3. test(std.Type.ValueType);
  4. }
  5. static function test<T>(e:Enum<T>) {
  6. trace(e.getName());
  7. }
  8. }