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