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