Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
issue-17718-constants-not-static.rs
blob: 2e6aff1618bfbc62d53b0f04210ea96920c53bff [
file
] [
log
] [
blame
] [
edit
]
fn
id
<
T
>(
x
:
T
)
->
T
{
x
}
const
FOO
:
usize
=
3
;
fn
foo
()
->
&
'
static
usize
{
&
id
(
FOO
)
}
//~^ ERROR: cannot return reference to temporary value
fn
main
()
{
}