1struct Opaque;
2struct Opaque *getOpaque();
3void puts(const char *);
4
5int main() {
6 struct Opaque *x = getOpaque();
7 puts("break here\n");
8 return (int)x;
9}
10

Provided by KDAB

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

source code of lldb/test/API/functionalities/valobj_errors/main.c