Skip to content

Instantly share code, notes, and snippets.

@tk0221
Created September 8, 2016 01:35
Show Gist options
  • Save tk0221/acc488129238ffb76be9db404860016c to your computer and use it in GitHub Desktop.
Save tk0221/acc488129238ffb76be9db404860016c to your computer and use it in GitHub Desktop.
|| |
int main(){
if (true || 0/0) {
std::cout << "Compile success\n";
}
if (true | 0/0) {
std::cout << "Compile warning\n";
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment