OSDN Git Service

2007-03-22 Dirk Mueller <dmueller@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / abi / empty8.C
1 // { dg-do run }
2 // { dg-options "-fabi-version=0" }
3
4 struct E1 {};
5 struct E2 : public E1 {};
6 struct S1 { int i; };
7 struct S2 : public S1, E2 {};
8
9 S2 s2;
10
11 int main () {
12   if ((char *)(E2*) &s2 != (char *)&s2)
13     return 1;
14 }