Main.hx 135 B

123456
  1. interface ITest<K, V> {
  2. function keys():Array<K>;
  3. function values():Array<V>;
  4. }
  5. interface ISubTest extends ITest<String, String> {}