Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
using20.C
blob: cf180d21fe989d2e0f863a051af9c0203048237d [
file
] [
log
] [
blame
]
// PR c++/51925
struct
E
{
int
e
();
};
template
<
typename
T1
>
struct
G
:
public
E
{
using
E
::
e
;
template
<int>
void
e
();
void
f
()
{
e
<
0
>
();
}
};
int
f
(
void
)
{
G
<int>
a
;
a
.
f
();
return
0
;
}