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
* doc/invoke.texi: Document -std=c++17 and -std=gnu++17 and document
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
class-deduction17.C
blob
646b5aac882236160e457b20009f364ce6671bb0
1
// { dg-options -std=c++17 }
2
3
#include <initializer_list>
4
template <class T>
5
struct A
6
{
7
A (std::initializer_list<T>);
8
};
9
10
A a{1,2};
11