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

9 lines
71 B
C

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