OSDN Git Service

* g++.old-deja/g++.brendan/scope5.C: Changed "Class" to "Klasse".
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / offsetof7.C
1 /* { dg-do compile } */
2
3 // From PR28573
4
5 struct A
6 {
7    int operator [] ( int indx ) { return indx; }
8 };
9
10 struct B
11 {
12    A a;
13 };
14
15 int main()
16 {
17    return __builtin_offsetof(B, a[0]);  /* { dg-error "cannot apply.*offsetof" } */
18 }