Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
borrowck
/
issue-46471.rs
blob: 8922005d2f82c6c154efb001f187e65519618cf0 [
file
] [
log
] [
blame
]
fn
foo
()
->
&
'
static
u32
{
let
x
=
0
;
&
x
//~^ ERROR cannot return reference to local variable `x` [E0515]
}
fn
main
()
{
}