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
/
initlist30.C
blob
eb78f3c1cdbc790d9cf942a8a364872e5d5074b5
1
// Testcase for variadic init list deduction.
2
// { dg-do compile { target c++11 } }
3
4
#include <initializer_list>
5
6
template <class... Ts>
7
void f (std::initializer_list<Ts>... ls);
8
9
int main()
10
{
11
f({1},{2.0});
12
}