9 lines
126 B
C++
9 lines
126 B
C++
|
void bar(int const *foo) {
|
||
|
__builtin_trap(); // Set break point at this line.
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
int foo = 5;
|
||
|
bar(&foo);
|
||
|
}
|