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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
initlist-new1.C
blob
e880486bfb52f963978284239d4e742e98a9db7d
1
// { dg-do compile { target c++11 } }
2
3
struct A
4
{
5
A() = default;
6
A(const A&) = default;
7
};
8
9
void f()
10
{
11
new A{A()};
12
}