OSDN Git Service
(root)
/
pf3gnuchains
/
gcc-fork.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix PR c++/40239
[pf3gnuchains/gcc-fork.git]
/
gcc
/
testsuite
/
g++.dg
/
init
/
aggr5.C
1
// Origin PR c++/40239
2
// { dg-do "compile" }
3
4
struct B { B() { } private: B(B const&); };
5
struct A { int a; B b; };
6
7
int
8
main()
9
{
10
A a = {0};
11
}