Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
issue-55394.rs
blob: f813d1c915cf62fe97d6dbb68175844f4cbf1117 [
file
] [
log
] [
blame
] [
edit
]
struct
Bar
;
struct
Foo
<
'
s
>
{
bar
:
&
'
s
mut
Bar
,
}
impl
Foo
<
'
_
>
{
fn
new
(
bar
:
&
mut
Bar
)
->
Self
{
Foo
{
bar
}
//~ERROR
}
}
fn
main
()
{
}