Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-7061.rs
blob: 8a6ee920a3a8bedca4d573b3f229fb8248d292ea [
file
] [
log
] [
blame
] [
edit
]
struct
BarStruct
;
impl
<
'
a
>
BarStruct
{
fn
foo
(&
'
a
mut
self
)
->
Box
<
BarStruct
>
{
self
}
//~^ ERROR mismatched types
//~| expected struct `Box<BarStruct>`
//~| found mutable reference `&'a mut BarStruct`
}
fn
main
()
{}