Sign in
rust
/
rust
/
ac0aff2115f92bd6f119f0df08d3bf0c4f8d259d
/
.
/
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
}