Sign in
android
/
toolchain
/
rustc
/
59fbe18bc79ed87d0c5f02705e7cf19e402e1f2b
/
.
/
src
/
test
/
ui
/
issues
/
issue-3521.rs
blob: c425a22df91737afb327b28247611b3093c96def [
file
]
// run-rustfix
fn
main
()
{
#[
allow
(
non_upper_case_globals
)]
let
foo
:
isize
=
100
;
#[
derive
(
Debug
)]
enum
Stuff
{
Bar
=
foo
//~^ ERROR attempt to use a non-constant value in a constant
}
println
!(
"{:?}"
,
Stuff
::
Bar
);
}