brintos

brintos / llvm-project-archived public Read only

0
0
Text · 203 B · c54339f Raw
15 lines · cpp
1#include <vector>2#include <string>3 4void f() {}5 6int main() {7    int foo = 10;8    int *bar = new int(4);9    std::string baz = "85";10    11    f(); // break here12    f(); // break here13    return 0;14}15