Main3.hx 153 B

123456789
  1. typedef Thenable<T> = {
  2. function then<TOut>():Thenable<TOut>;
  3. }
  4. class Main3 {
  5. static function main() {
  6. ({then: () -> null} : Thenable<String>);
  7. }
  8. }