2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / offsetof2.C
blobda888f7a59eb17c7148a17bac303f78f3208095e
1 // PR c++/49085
3 template <class T>
4 struct A                        // { dg-error "declaration" }
6   int i, j;
7   int ar[__builtin_offsetof(A,j)]; // { dg-error "incomplete type" }
8 };
10 A<int> a;