Main.hx 259 B

1234567891011121314
  1. class Main {
  2. public static function main() {
  3. var t:Base<String> = new Test();
  4. trace(t.getValue());
  5. var t:Base<Int> = new Test();
  6. trace(t.getValue());
  7. var t:Base = new Test();
  8. trace(t.getValue());
  9. }
  10. }
  11. @:genericBuild(Macro.apply())
  12. class Test {}