aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/941113-1.c
blob: 5c2e0b68c569f871afe0fcc1ab3c910b2954bed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
typedef void foo (void);

f (x)
{
  if (x)
    {
      const foo* v;
      (*v)();
    }
  else
    g (0);
}