Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
cond3.C
blob: 788b3754a61e2f654149670b6716c31126752d91 [
file
] [
log
] [
blame
]
// PR c++/13833
struct
X
{
template
<
typename
T
>
X
&
operator
<<
(
const
T
&
t
);
X
&
operator
<<
(
int
&
(*
p
)
(
int
&));
};
X x
;
template
<int>
void
foo
()
{
x
<<
(
1
?
"ok"
:
"failed"
);
}
template
void
foo
<
1
>();