Created
February 22, 2019 23:23
-
-
Save kaityo256/1d0e448459fc33fbf262e38b9e9ac911 to your computer and use it in GitHub Desktop.
Undefined Behavior Sample
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
| #include <iostream> | |
| int foo() { | |
| std::cout << "foo" << std::endl; | |
| } | |
| void bar() { | |
| std::cout << "bar" << std::endl; | |
| foo(); | |
| } | |
| int main() { | |
| foo(); | |
| } |
Author
kaityo256
commented
Feb 22, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment