Skip to content

Instantly share code, notes, and snippets.

@izqui
Created February 7, 2017 20:28
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 izqui/c4c0d29954b467e025b672fa636fc096 to your computer and use it in GitHub Desktop.
Save izqui/c4c0d29954b467e025b672fa636fc096 to your computer and use it in GitHub Desktop.
library C {
function a() returns (address) {
return address(this);
}
}
contract A {
function a() constant returns (address) {
return C.a();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment