1#include <stdio.h>
2
3int sum(int x, int y) {
4 return x + y;
5}
6
7int main() {
8 printf(format: "Set a breakpoint here.\n");
9 return sum(x: -1, y: 1);
10}
11

source code of lldb/test/API/commands/expression/entry-bp/main.c