Skip to content

Instantly share code, notes, and snippets.

@YellowAfterlife
Created January 5, 2017 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YellowAfterlife/6f3410ead21f4c015e099e6d0134d046 to your computer and use it in GitHub Desktop.
Save YellowAfterlife/6f3410ead21f4c015e099e6d0134d046 to your computer and use it in GitHub Desktop.
Woes with import.hx
class Ext {
public static function test(v:Any) trace(v);
}
import Ext.*;
class Main {
static function main() {
test("hi"); // "test" does not show up in auto-completion while typing
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment