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
/
ref11.C
blob
b283e3a69be63c9d27ae1611bd494254c5e98a4a
1
// PR c++/14230
2
3
struct A {
4
A ();
5
A (const A&);
6
A& operator= (const A&);
7
};
8
9
struct D {
10
A a;
11
};
12
13
const A& z = D().a;