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