Skip to content

Instantly share code, notes, and snippets.

@makoConstruct
Created July 22, 2015 08:41
Show Gist options
  • Save makoConstruct/ae2a14cb9a4ae36cb708 to your computer and use it in GitHub Desktop.
Save makoConstruct/ae2a14cb9a4ae36cb708 to your computer and use it in GitHub Desktop.
//ImportByProxySuccess.hx
using A;
class Main{
var b:B;
static public function main(){
trace("runs fine");
}
}
//ImportByProxyFailure.hx
using A;
class Main{
var b:BAssociate;
static public function main(){
trace("does not run");
}
}
//A.hx
using B;
//B.hx
class B{}
class BAssociate{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment