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
/
ext
/
complit2.C
blob
9fe00c42ea0743e42e4c301755455b4160600e3f
1
// PR c++/12726
2
// Origin: Vladimir Zidar <mr_W@mindnever.org>
3
// Reduced version: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
4
// { dg-options "" }
5
6
struct A
7
{
8
A();
9
A(const A&);
10
A(int);
11
};
12
13
struct B
14
{
15
A a;
16
};
17
18
void foo()
19
{
20
B b;
21
b = (B){0};
22
}