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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist51.C
blob
9fd750df24855404fa52a4e4ad8055875560e296
1
// PR c++/47184
2
// { dg-do compile { target c++11 } }
3
4
struct S
5
{
6
int a;
7
};
8
struct T
9
{
10
T(S s) {}
11
};
12
int main()
13
{
14
T t(S{1});
15
}