summary refs log tree commit diff
path: root/src/tools/miri/tests/fail/erroneous_const2.rs
blob: 9a1a970778fb4555442a2a3966ddc5d7ac0b6a6a (plain)
1
2
3
4
5
6
7
8
9
const X: u32 = 5;
const Y: u32 = 6;
const FOO: u32 = [X - Y, Y - X][(X < Y) as usize];
//~^ERROR: evaluation of constant value failed

#[rustfmt::skip] // rustfmt bug: https://github.com/rust-lang/rustfmt/issues/5391
fn main() {
    println!("{}", FOO);
}