Skip to content

Instantly share code, notes, and snippets.

@domiyanyue
Created April 25, 2020 19:13
Show Gist options
  • Save domiyanyue/8b89381de82471f1395f47e6de7ed76d to your computer and use it in GitHub Desktop.
Save domiyanyue/8b89381de82471f1395f47e6de7ed76d to your computer and use it in GitHub Desktop.
error definition order
int foo(){
// can't find bar's definition
return bar();
}
int bar() {
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment