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

9 lines
75 B
C

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