Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
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>
)
;
}