repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
init
/
aggr3.C
blob
3376897e105ccec43a43583442fbca57cb8e4af5
1
// PR c++/18793
2
3
struct S {
4
S();
5
S(const S&);
6
void operator=(const S&);
7
};
8
9
struct X {
10
int a, b, c, d, e;
11
S s;
12
};
13
14
void foobar () {
15
X x = {0};
16
}