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

source code of lldb/test/API/commands/expression/diagnostics/main.cpp