aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/typedef2.C
blob: 44a32de392563147c08b03106492d50e5c582193 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PRMS Id: 5367
// Bug: the nested name of C::func gets hosed.

struct C {
  typedef int func(int *, int *);
};

int
main()
{
   C::func *handler;
}