llvm/lldb/test/API/symbol_ondemand/breakpoint_source_regex/main.cpp

#include <stdio.h>

void foo() {
  printf("hello world from foo"); // Set break point at this line.
}

int main() {
  foo();
  return 0;
}