Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-37725.rs
blob: 28b4527ebb9a96162d74cef7aa9475cc7928ae40 [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass
// compiler-opts: -Zmir-opt-level=2
#![
allow
(
dead_code
)]
trait
Foo
{
fn
foo
(&
self
);
}
fn
foo
<
'a>(s: &'
a
mut
())
where
&
'
a
mut
():
Foo
{
s
.
foo
();
}
fn
main
()
{}