mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
17 lines
348 B
Rust
17 lines
348 B
Rust
#![feature(min_const_generics)]
|
|
#![crate_type = "lib"]
|
|
|
|
// 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,
|
|
}
|
|
}
|