Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
pr66686.C
blob: d8aea625d46c368e7797820566fe0fbea58f20f7 [
file
] [
log
] [
blame
]
// PR c++/66686
template
<int>
struct
Y
{
};
template
<
class
B
,
template
<
template
<
B
>
class
Z
>
class
C
>
struct
X
{
C
<
Y
>
a
;
// { dg-bogus "mismatch" }
};
template
<
template
<int>
class
>
struct
A
{
};
X
<
int
,
A
>
a
;