Created
April 25, 2020 19:13
-
-
Save domiyanyue/8b89381de82471f1395f47e6de7ed76d to your computer and use it in GitHub Desktop.
error definition order
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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