Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
typedef2.C
blob: 63c19bd16f5d938de5715cc2ef9f72c46f6a8ee6 [
file
] [
log
] [
blame
]
// { dg-do run }
// PRMS Id: 5367
// Bug: the nested name of C::func gets hosed.
struct
C
{
typedef
int
func
(
int
*,
int
*);
};
int
main
()
{
C
::
func
*
handler
;
}