brintos

brintos / llvm-project-archived public Read only

0
0
Text · 144 B · 7c78101 Raw
6 lines · c
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