Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
nested5.C
blob: e3e871e6d85989809de097db7732314e3067464f [
file
] [
log
] [
blame
]
// PR c++/33959
template
<
typename
T
>
struct
A
{
struct
C
{
template
<
typename
U
>
struct
D
{};
};
template
<
typename
S
>
static
C
::
template
D
<
S
>
bar
(
S
const
&);
};
struct
E
{};
int
main
()
{
E e
;
A
<
E
>::
bar
(
e
);
}