Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
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
()
{}
};