1 //===-- main.cpp ------------------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 bool bar(int const *foo) { 10 return foo != 0; // Set break point at this line. 11 } 12 13 int main() { 14 int foo[] = {1,2,3}; 15 return bar(foo); 16 } 17