1// { dg-do run  }
2// PRMS Id: 5367
3// Bug: the nested name of C::func gets hosed.
4
5struct C {
6  typedef int func(int *, int *);
7};
8
9int
10main()
11{
12   C::func *handler;
13}
14