summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.abi/primary2.C
blob: fd440c0b048392e9ffa8314df822ff8bdc70adde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do run  }
// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 4 February 2001 <nathan@codesourcery.com>

// Check primary bases are chosen correctly.

struct A {virtual void Foo () {}};
struct B : virtual A {};
struct C : virtual B {};
struct D : virtual B, virtual C {};

int main ()
{
  D d;

#if __GXX_ABI_VERSION >= 100
  if (sizeof (D) != sizeof (A))
    return 1;
#endif

  return 0;
}