repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
re PR target/85657 (Make __ibm128 a separate type, even if long double uses the IBM...
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.martin
/
conv1.C
blob
552e47b46b6a591aa25f0a0b9e2608ad26dbda50
1
// { dg-do run }
2
struct S{
3
operator bool()
4
{
5
return true;
6
}
7
};
8
9
int main()
10
{
11
S a;
12
if (S &b = a);
13
}
14