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 static int foo(int x, int y) {
10   return x + y; // BREAK HERE
11 }
12 
13 static int bar(int x) {
14   return foo(x + 1, x * 2);
15 }
16 
17 int main (int argc, char const *argv[])
18 {
19     return bar(argc + 2);
20 }
21