summary refs log tree commit diff
path: root/src/test/ui/consts/const-slice-oob.rs
blob: 1775f35fac441a32476054901be9514e9d6ca2ca (plain)
1
2
3
4
5
6
7
8
9
10
#[deny(const_err)]

const FOO: &'static[u32] = &[1, 2, 3];
const BAR: u32 = FOO[5];
//~^ index out of bounds: the len is 3 but the index is 5
//~| ERROR any use of this value will cause an error

fn main() {
    let _ = BAR;
}