Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
operator13.C
blob: 1967c910e68851205a96ce00da14d12633596ece [
file
] [
log
] [
blame
]
// PR c++/50961
template
<
class
>
void
foo
();
bool
b1
=
!
foo
<void>
;
bool
b2
=
foo
<void>
?
true
:
false
;
void
bar
()
{
if
(
foo
<void>
)
;
}