Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
parse14.C
blob: 34b5f840065c063c8286c776d05876c192a3b3df [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: g++ decides that A::foo is introducing a constructor declarator.
struct
A
{
typedef
bool
foo
;
};
A
::
foo
(*
bar
)
();
struct
B
{
A
::
foo
(*
bar
)
();
};