netbsd/external/bsd/llvm/dist/clang/test/PCH/cxx-offsetof-base.h
2014-01-15 10:53:42 +01:00

6 lines
144 B
C

// Header for PCH test cxx-offsetof-base.cpp
struct Base { int x; };
struct Derived : Base { int y; };
int o = __builtin_offsetof(Derived, x);