Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic-ref1.C
blob: 441d386ad81c99a965489584245a5df98f2668cd [
file
] [
log
] [
blame
]
// PR c++/79470
// { dg-do compile { target c++11 } }
template
<
const
int
&...
>
struct
AA
;
template
<
>
struct
AA
<>
{
};
template
<
const
int
&
II
,
const
int
&...
Is
>
struct
AA
<
II
,
Is
...>
{
};