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
/
variadic3.C
blob
c4a5b55cc59b3cc97164b133836c9d64c8e2a7b9
1
// { dg-do compile { target c++11 } }
2
template<typename... Args>
3
class tuple {};
4
5
void f()
6
{
7
tuple<> x;
8
tuple<int> y;
9
tuple<int, float> z;
10
}