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

Provided by KDAB

Privacy Policy
Update your C++ knowledge – Modern C++11/14/17 Training
Find out more

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