netbsd/external/bsd/llvm/dist/clang/test/PCH/debug-info-limited-struct.h
2014-01-15 10:53:42 +01:00

9 lines
71 B
C

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