summary refs log tree commit diff
path: root/src/test/ui/consts/const-err.rs
blob: 7dfcda69058acc0802d356e2762b548929796cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// compile-flags: -Zforce-overflow-checks=on

#![allow(exceeding_bitshifts)]
#![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
}