1// Header for PCH test cxx-offsetof-base.cpp2 3struct Base { int x; };4struct Derived : Base { int y; };5int o = __builtin_offsetof(Derived, x);6