aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/valobj_errors/main.c
blob: fabdca9d3a2ecdfcc341cf92451eaf9a7fd51d54 (plain)
1
2
3
4
5
6
7
8
9
struct Opaque;
struct Opaque *getOpaque();
void puts(const char *);

int main() {
  struct Opaque *x = getOpaque();
  puts("break here\n");
  return (int)x;
}