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

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