Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
static17.C
blob: bf79bccc3284e34797f83dd5b42b725fbcb4c730 [
file
]
// PR c++/23896
template
<int>
struct
X
{};
template
<
typename
T
>
struct
length
{
static
const
int
value
=
2
;
};
template
<
typename
T
>
void
foo
()
{
sizeof
(
X
<
length
<
T
>::
value
>);
}
template
void
foo
<int>
();