summary refs log tree commit diff
path: root/src/test/ui/consts/const-len-underflow-subspans.rs
blob: 37f6ef1bd9d7e95207a8bc57e872f31905d7fe88 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Check that a constant-evaluation underflow highlights the correct
// spot (where the underflow occurred).

const ONE: usize = 1;
const TWO: usize = 2;

fn main() {
    let a: [i8; ONE - TWO] = unimplemented!();
    //~^ ERROR evaluation of constant value failed
    //~| attempt to subtract with overflow
}