Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
span
/
mut-ptr-cant-outlive-ref.rs
blob: b8c752d73ed1823172e78de26880699262795868 [
file
] [
log
] [
blame
] [
edit
]
use
std
::
cell
::
RefCell
;
fn
main
()
{
let
m
=
RefCell
::
new
(
0
);
let
p
;
{
let
b
=
m
.
borrow
();
p
=
&*
b
;
}
//~^^ ERROR `b` does not live long enough
p
.
use_ref
();
}
trait
Fake
{
fn
use_mut
(&
mut
self
)
{
}
fn
use_ref
(&
self
)
{
}
}
impl
<
T
>
Fake
for
T
{
}