aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/pr95152-5.c
blob: 604b78458c7e17e3becb23b89723d4277b701f4c (plain)
1
2
3
4
5
6
/* { dg-additional-options "-Wno-incompatible-pointer-types" } */
void foo(void)
{
  void (*a[1]) ();
  void (*p) () = a + 1;
}