llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp

9 lines
139 B
C++

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