Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-13703.rs
blob: 9748ab3719ef566114db972a761b91c5aa098205 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ pretty-expanded FIXME #23616
pub
struct
Foo
<
'a, '
b
:
'a> { foo: &'
a
&
'
b isize
}
pub
fn
foo
<
'a, '
b
>(
x
:
Foo
<
'a, '
b
>,
_o
:
Option
<&
&
()>)
{
let
_y
=
x
.
foo
;
}
fn
main
()
{}