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
/
opt
/
nrv7.C
blob
c5034ecc0f21fa47ab05a8ed81c8a9867a63054d
1
// PR c++/15461
2
3
struct A {
4
int i;
5
};
6
7
inline A foo () {
8
int j = 1;
9
A a = { j };
10
return a;
11
}
12
13
A tv = foo();