1void bar(int const *foo) {2 __builtin_trap(); // Set break point at this line.3}4 5int main() {6 int foo = 5;7 bar(&foo);8}9