Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
issue-78655.rs
blob: cd95ee32c60d22b1c39f0f58c2a6f09381af36b4 [
file
] [
log
] [
blame
] [
edit
]
const
FOO
:
*
const
u32
=
{
let
x
;
&
x
//~ ERROR E0381
};
fn
main
()
{
let
FOO
=
FOO
;
//~^ ERROR could not evaluate constant pattern
}