1struct Structure {
2 int number;
3};
4
5int main(int argc, char **argv) {
6 struct Structure s;
7 s.number = 30;
8 // break here
9 return 0;
10}
11

source code of lldb/test/API/commands/dwim-print/main.c