aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/eh/cleanup4.C
blob: ba2d891c949cabb46b5d0fb8f752feedf1830ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR 16254
// { dg-do compile }
// We lost a CLEANUP_POINT_EXPR, leading to a crash destroying temp of A.

struct A
{
  ~A ();
  A (int);
};

int bar (const A &);

void
foo (int i)
{
  int format[1] = { bar (A (i)) };
}