blob: 7c7810185d466e49f122115a0bd3df1395b9ab32 [file] [log] [blame]
Argyrios Kyrtzidisafbf3122010-07-29 18:16:10 +00001// Header for PCH test cxx-offsetof-base.cpp
2
3struct Base { int x; };
4struct Derived : Base { int y; };
5int o = __builtin_offsetof(Derived, x);