aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/offsetof2.C
blob: 6f741a96205b5e122466aad8ed8597bfcc8168fe (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/49085

template <class T>
struct A			// { dg-message "declaration" }
{
  int i, j;
  int ar[__builtin_offsetof(A,j)]; // { dg-error "incomplete type" }
};

A<int> a;