1#include <stdio.h>
2
3void foo() {
4 printf(format: "hello world from foo"); // Set break point at this line.
5}
6
7int main() {
8 foo();
9 return 0;
10}
11

source code of lldb/test/API/symbol_ondemand/breakpoint_source_regex/main.cpp