xref: /llvm-project/lldb/test/API/functionalities/valobj_errors/main.c (revision 6462eadbd316aed1b1074ed73bcaf1698886bba1)
1 struct Opaque;
2 struct Opaque *getOpaque();
3 void puts(const char *);
4 
main()5 int main() {
6   struct Opaque *x = getOpaque();
7   puts("break here\n");
8   return (int)x;
9 }
10