Sign in
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
error-codes
/
E0435.fixed
blob: 7420629343322bd0b205d63599362a0d35796443 [
file
]
//@ run-rustfix
fn main
()
{
#[allow(non_upper_case_globals)]
const
foo
:
usize
=
42
;
let
_
:
[
u8
;
foo
];
//~ ERROR E0435
}