summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/offsetof1.C
blob: 1468c0a7c06864ef7fb969f9b105313936c85692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR c++/27601
// Origin: Patrik H�gglund  <patrik.hagglund@bredband.net>
// { dg-do compile }

struct bar {
  static int foo;
  static int baz();
};

int a = __builtin_offsetof(bar, foo);  // { dg-error "static data member" }
int av = __builtin_offsetof(volatile bar, foo);  // { dg-error "static data member" }
int b = __builtin_offsetof(bar, baz);  // { dg-error "member function" }
int b0 = __builtin_offsetof(bar, baz[0]);  // { dg-error "function" }
int bv0 = __builtin_offsetof(volatile bar, baz[0]);  // { dg-error "function" }
int c = __builtin_offsetof(bar, ~bar);  // { dg-error "member function" }

typedef int I;
enum E { };

int d = __builtin_offsetof(I, ~I);  // { dg-error "destructor" }
int e = __builtin_offsetof(E, ~E);  // { dg-error "destructor" }