1 //===-- main.cpp ------------------------------------------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
bar(int const * foo)10 bool bar(int const *foo) {
11 return foo != 0; // Set break point at this line.
12 }
13
main()14 int main() {
15 int foo[] = {1,2,3};
16 return bar(foo);
17 }
18