about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/unused-broken-const.rs
blob: 602063626653f9a78678756910ac4283fef1995d (plain)
1
2
3
4
5
6
7
8
// make sure that an *unused* broken const triggers an error even in a check build

//@ compile-flags: --emit=dep-info,metadata

const FOO: i32 = [][0];
//~^ ERROR index out of bounds

fn main() {}