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
/
variadic-nested2.C
blob
ce18f99ea50b26279a05ea8406d9e75ea379d826
1
// PR c++/84839
2
// { dg-do compile { target c++11 } }
3
4
template<typename... T>
5
struct S {
6
using fptr = void(*)(T... x, decltype(x)... y);
7
};
8
9
using F = S<int>::fptr;