Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
trait-bounds
/
issue-75961.rs
blob: 8f4bc79f1f392e4a768f14cab0989d5a7dd2265b [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
pub
fn
foo
<
'a>(s: &'
a
mut
())
where
&
'
a
mut
():
Clone
{
<&
mut
()
as
Clone
>::
clone
(&
s
);
}
fn
main
()
{}