Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
issue-13405.rs
blob: 80b298d2f37aa3371cbd758adcd89eee491f9433 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#![
allow
(
dead_code
)]
#![
allow
(
unused_variables
)]
struct
Foo
<
'
a
>
{
i
:
&
'
a bool
,
j
:
Option
<&
'
a isize
>,
}
impl
<
'a> Foo<'
a
>
{
fn
bar
(&
mut
self
,
j
:
&
isize
)
{
let
child
=
Foo
{
i
:
self
.
i
,
j
:
Some
(
j
)
};
}
}
fn
main
()
{}