repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic118.C
blob
705e4e602dd4caeb15cbb2437298ba8bb40de77c
1
// { dg-do compile { target c++11 } }
2
3
template <class... T>
4
void f(T... ts);
5
6
struct B { };
7
int main()
8
{
9
f<int>(B(), 1); // { dg-error "" }
10
}