xref: /minix3/external/bsd/llvm/dist/clang/test/PCH/debug-info-limited-struct.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc struct foo {
2*f4a2713aSLionel Sambuc   int i;
3*f4a2713aSLionel Sambuc };
4*f4a2713aSLionel Sambuc 
func()5*f4a2713aSLionel Sambuc void func() {
6*f4a2713aSLionel Sambuc   struct foo *f;
7*f4a2713aSLionel Sambuc   f->i = 3;
8*f4a2713aSLionel Sambuc }
9