aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/debug/typedef1.C
blob: 82455358b9697d57a1c7a1be9d913711f3309941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR debug/6436
// { dg-do compile }

typedef struct 
{
  unsigned int a0, a1;
} A __attribute__ ((aligned(8)));

typedef struct
{
  A a;
} B;

struct C
{
  B *bp;
};