1bool bar(int const *foo) {
2 return foo != 0; // Set break point at this line.
3}
4
5int main() {
6 int foo[] = {1,2,3};
7 return bar(foo);
8}
9

source code of lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp