llvm/clang/test/PCH/debug-info-limited-struct.h

struct foo {
  int i;
};

void func(void) {
  struct foo *f;
  f->i = 3;
}