xref: /llvm-project/lldb/test/API/symbol_ondemand/breakpoint_source_regex/main.cpp (revision 7b81192d462bbd8031d5c665e29cd6b4c0c6887a)
1 #include <stdio.h>
2 
foo()3 void foo() {
4   printf("hello world from foo"); // Set break point at this line.
5 }
6 
main()7 int main() {
8   foo();
9   return 0;
10 }
11