Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
return-disjoint-regions.rs
blob: d0feb3b65e12ac09bab1b0c7a7d8686725308952 [
file
] [
log
] [
blame
]
// See https://github.com/rust-lang/rust/pull/67911#issuecomment-576023915
fn
f
<
'a, '
b
>(
x
:
i32
)
->
(&
'a i32, &'
b i32
)
{
let
y
=
&
x
;
(
y
,
y
)
//~ ERROR cannot return
}
fn
main
()
{}