aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tree-ssa/pr22071.C
blob: 719aed374507c2340e34508e6521b7c86aef1a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O2" } */

/* This code ends up taking the address of part of the structure that is padding, 
   and because there is no real field there, the structure alias analyzer would 
   abort.  */
struct empty_class {};
struct class1 : empty_class
{
  class1() {}
  empty_class value_;
};
struct lambda : class1 { };
lambda _1;