Sign in
rust
/
rust
/
400a96e441bf6f11250eb4e21b842b06ba01d45c
/
.
/
tests
/
ui
/
static
/
issue-18118.rs
blob: f58a3de281f1ae1123e7ec98c7057e050f72c947 [
file
]
pub
fn
main
()
{
const
z
:
&
'
static
isize
=
{
let
p
=
3
;
&
p
//~ ERROR `p` does not live long enough
};
}