summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/gdb1476.c
blob: c3f43760bf309598496be8eb18dfaee31014b076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void x()
{
  void (*fp)() = 0;
  fp();
}

int
main()
{
  x();
  return 0;
}