rust/src/test/ui/consts/const-err.rs
2020-02-18 22:49:47 +01:00

19 lines
353 B
Rust

// build-fail
// compile-flags: -Zforce-overflow-checks=on
#![allow(arithmetic_overflow)]
#![warn(const_err)]
fn black_box<T>(_: T) {
unimplemented!()
}
const FOO: u8 = [5u8][1];
//~^ WARN any use of this value will cause an error
fn main() {
black_box((FOO, FOO));
//~^ ERROR erroneous constant used
//~| ERROR erroneous constant
}