Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
conv7.C
blob: 86758b3623d4ed2a952bead4f028cbf6028840db [
file
] [
log
] [
blame
]
// { dg-options "-fabi-version=0" }
template
<
typename
T
>
struct
S
{
struct
I
{};
operator
I
*
();
};
template
<
typename
T
>
struct
S2
:
S
<
T
>
{
operator
typename
S
<
T
>::
I
*
();
};
template
struct
S2
<int>
;