Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
issues
/
issue-44239.rs
blob: 482ed194c7a1c117a19ad39219fbdc5691a24eb1 [
file
] [
log
] [
blame
]
// run-rustfix
#![
allow
(
dead_code
,
non_upper_case_globals
)]
fn
main
()
{
let
n
:
usize
=
0
;
struct
Foo
;
impl
Foo
{
const
N
:
usize
=
n
;
//~^ ERROR attempt to use a non-constant value
}
}