Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr71832.C
blob: 3b851110f3c721ec9db59d7428b8b2c862e11296 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
template
<
typename
decltype
(
0
)
>
struct
A
// { dg-error "expected|two or more" }
{
void
foo
()
{
baz
();
}
template
<
typename
...
S
>
void
baz
()
{}
};