Home | History | Annotate | Download | only in PCH
      1 // Header for PCH test cxx-offsetof-base.cpp
      2 
      3 struct Base { int x; };
      4 struct Derived : Base { int y; };
      5 int o = __builtin_offsetof(Derived, x);
      6