aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/offsetof6.C
blob: b77d1b99a77465d5e74e193561b513c4623f4397 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Contributed by Dodji Seketeli <dodji@redhat.com>
// Origin PR c++/38699
// { dg-do compile }

template<class T>
struct A
{
  const T *p;
};

struct B
{
  A<int> a;
};

template class A<char>;

void
f0 ()
{
  __builtin_offsetof(A<char>, p); // OK
  __builtin_offsetof(A<char>, p[1]); // { dg-error "non constant address" }
  __builtin_offsetof(B, a.p); // OK
  __builtin_offsetof(B, a.p[1]); // { dg-error "non constant address" }
}