Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
ambig9.C
blob: 68744d1ba63a7928b304e350a27fbbc22cc11c6c [
file
] [
log
] [
blame
]
// PR c++/49691
struct
A
{
int
x
;
};
A
*
f
();
struct
B
{
void
g
()
{
int
(
f
()->
x
);
}
};