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
Learn to use CMake with our Intro Training
Find out more

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