Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
member7.C
blob: 1c75e4956625ab78409b77166436705104fee3b4 [
file
] [
log
] [
blame
]
// PR c++/29080
struct
Base
{
template
<
class
C
>
void
method
()
{
}
};
struct
Left
:
public
Base
{
};
struct
Right
:
public
Base
{
};
struct
Join
:
public
Left
,
public
Right
{
};
void
function
()
{
Join
join
;
join
.
Left
::
method
<int>
();
}