aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/abi/empty8.C
blob: a5287b15fa0b3591768ce3a4ac9c49b8eb4d02e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do run }
// { dg-options "-fabi-version=0" }

struct E1 {};
struct E2 : public E1 {};
struct S1 { int i; };
struct S2 : public S1, E2 {};

S2 s2;

int main () {
  if ((char *)(E2*) &s2 != (char *)&s2)
    return 1;
}