1 #include <vector>
2 #include <string>
3 
4 void f() {}
5 
6 int main() {
7     int foo = 10;
8     int *bar = new int(4);
9     std::string baz = "85";
10 
11     f(); // break here
12     f(); // break here
13     return 0;
14 }
15