Rebase.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / typedef2.C
blob63c19bd16f5d938de5715cc2ef9f72c46f6a8ee6
1 // { dg-do run  }
2 // PRMS Id: 5367
3 // Bug: the nested name of C::func gets hosed.
5 struct C {
6   typedef int func(int *, int *);
7 };
9 int
10 main()
12    C::func *handler;