Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
feature-gates
/
feature-gate-const_refs_to_cell.rs
blob: 63159ed05532fb77cf64493ebe2c9dff300d5131 [
file
] [
log
] [
blame
]
// check-pass
#![
feature
(
const_refs_to_cell
)]
const
FOO
:
()
=
{
let
x
=
std
::
cell
::
Cell
::
new
(
42
);
let
y
=
&
x
;
};
fn
main
()
{
FOO
;
}