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