repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic111.C
blob
09bac287a567226232b3293ef37480f569118cea
1
// PR c++/48424
2
// { dg-do compile { target c++11 } }
3
// { dg-options "-fabi-version=0" }
4
5
template<typename... Args1>
6
struct S
7
{
8
template<typename... Args2>
9
void f(Args1... args1, Args2&&... args2)
10
{
11
}
12
};
13
14
int main()
15
{
16
S<int, double> s;
17
s.f(1,2.0,false,'a');
18
}
19
20
// { dg-final { scan-assembler "_ZN1SIJidEE1fIJbcEEEvidDpOT_" } }