about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0435.fixed
blob: 7420629343322bd0b205d63599362a0d35796443 (plain)
1
2
3
4
5
6
//@ run-rustfix
fn main () {
    #[allow(non_upper_case_globals)]
    const foo: usize = 42;
    let _: [u8; foo]; //~ ERROR E0435
}