aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr59963-3.c
blob: eafa37473f3a8da4a45d4fa92d08ebee99f74744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR c/59963 */
/* { dg-do compile } */
/* { dg-options "-Wconversion" } */

extern void foo (void *p);

void
bar (void)
{
  {
    /* This must not ICE.  */
    int i __attribute__((cleanup (foo)));
  }
}