Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-eval
/
promote-static.rs
blob: 53b5ab294d7f3d2c6f443b907f3488c4e583f52f [
file
] [
log
] [
blame
] [
edit
]
// regression test for #67609.
//@ check-pass
static
NONE
:
Option
<
String
>
=
None
;
static
NONE_REF_REF
:
&&
Option
<
String
>
=
{
let
x
=
&&
NONE
;
x
};
fn
main
()
{
println
!(
"{:?}"
,
NONE_REF_REF
);
}