xref: /llvm-project/lldb/test/API/commands/expression/diagnostics/main.cpp (revision 99451b4453688a94c6014cac233d371ab4cc342d)

foo(int x)1 void foo(int x) {}
2 
3 struct FooBar {
4   int i;
5 };
6 
main()7 int main() {
8   FooBar f;
9   foo(1);
10   return 0; // Break here
11 }
12