Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-25076.rs
blob: 6c5a5539245612b5c30f52ef358022af7ce16118 [
file
] [
log
] [
blame
] [
edit
]
struct
S
;
trait
InOut
<
T
>
{
type
Out
;
}
fn
do_fold
<
B
,
F
:
InOut
<
B
,
Out
=
B
>>(
init
:
B
,
f
:
F
)
{}
fn
bot
<
T
>()
->
T
{
loop
{}
}
fn
main
()
{
do_fold
(
bot
(),
());
//~ ERROR `(): InOut<_>` is not satisfied
}