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