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
PR c++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nsdmi9.C
blob
febe0ecac46389c54a2233375629eb90dd8ec276
1
// PR c++/58162
2
// { dg-require-effective-target c++11 }
3
4
struct A {
5
A();
6
A(A&&);
7
};
8
9
struct B {
10
A const a = A();
11
};
12
13
B b;