aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr37418-4.c
blob: bc872789004ba8e489e5bd5a0c30f4b3a02cb121 (plain)
1
2
3
4
5
6
typedef void ft(int);
const ft f;
void f2(ft *p __attribute__((const)))
{
  p = f;
}