Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash131.C
blob: 7b3a47dce027ec36c22872ca483dd1d7dc41ef16 [
file
] [
log
] [
blame
]
// PR c++/62207
template
<
class
F
>
class
X
{
public
:
template
<
F f
>
class
Y
{};
template
<
F f
>
void
y
()
{}
X
(
F f
)
{
Y
<f>
y
;
// { dg-error "not a constant" }
y
.
value
();
}
};
int
main
()
{
X
<int>
x
(
1
);
}