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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
71 B
C
Raw Normal View History

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