Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic147.C
blob: 7f606d84a1e65d7ad2b87c3b30f9e03b684f8dac [
file
] [
log
] [
blame
]
// PR c++/58466
// { dg-require-effective-target c++11 }
template
<
char
,
char
...>
struct
A
;
template
<typename>
struct
B
;
template
<
char
...
C
>
struct
B
<
A
<
C
...>>
{};
B
<
A
<
'X'
>>
b
;