bolt/deps/llvm-18.1.8/clang/test/PCH/cxx-offsetof-base.h

6 lines
144 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// Header for PCH test cxx-offsetof-base.cpp
struct Base { int x; };
struct Derived : Base { int y; };
int o = __builtin_offsetof(Derived, x);