Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
op1.C
blob: 7cc9c9e91c2c9cbf12c427073dd0b118c9c62cc8 [
file
] [
log
] [
blame
]
template
<
class
T
>
struct
X
{
typedef
int
type
;
};
template
<
class
T
>
struct
O
{
struct
I
{
operator
typename
X
<
T
>::
type
();
};
};
template
<
class
T
>
O
<
T
>::
I
::
operator
typename
X
<
T
>::
type
()
{}