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
/
conversion
/
cond1.C
blob
16184ccb4116491389fcb116002f6ae60fcf8ad3
1
// PR c++/9440
2
struct A {
3
explicit A(int = 0);
4
A(const A&);
5
operator int() const;
6
};
7
8
A
9
bar(bool b, const A& a)
10
{
11
return (b ? A() : a);
12
}