summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/const_goto_const_eval_fail.rs
blob: b2357663a90c4a58db12b08b0e1153dae469a59e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(min_const_generics)]
#![crate_type = "lib"]

// compile-flags: -Zunsound-mir-opts

// If const eval fails, then don't crash
// EMIT_MIR const_goto_const_eval_fail.f.ConstGoto.diff
pub fn f<const A: i32, const B: bool>() -> u64 {
    match {
        match A {
            1 | 2 | 3 => B,
            _ => true,
        }
    } {
        false => 1,
        true => 2,
    }
}