2018-09-19 10:22:03 -05:00
|
|
|
// 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];
|
2022-09-21 06:05:20 -05:00
|
|
|
//~^ ERROR evaluation of constant value failed
|
2018-09-19 10:22:03 -05:00
|
|
|
|
|
|
|
fn main() {}
|