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