Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash121.C
blob: b7291df7edc8e2541e6f4668969c74ee3d660f8d [
file
] [
log
] [
blame
]
// PR c++/59955
template
<
int
xyz
>
struct
wovo
{
template
<
int
n
>
void
us
(){}
template
<
int
n
>
struct
us
<
n
>
{};
// { dg-error "template|conflicts" }
};