Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0435.fixed
blob: 7420629343322bd0b205d63599362a0d35796443 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
fn main
()
{
#[allow(non_upper_case_globals)]
const
foo
:
usize
=
42
;
let
_
:
[
u8
;
foo
];
//~ ERROR E0435
}