OSDN Git Service

PR c++/30849
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / offsetof3.C
1 // PR c++/13529
2
3 #include <cstddef>
4
5 struct A { int i; };
6 struct B { A a; };
7
8 int main()
9 {
10   return offsetof(B,a.i) != 0;
11 }