Add regression test

This commit is contained in:
Oli Scherer 2023-09-18 15:20:36 +00:00
parent 0a689c1be8
commit 44e199bf30

View File

@ -0,0 +1,21 @@
#![feature(inline_const)]
#![allow(arithmetic_overflow, unconditional_panic)]
// check-pass
// The only way to have promoteds that fail is in `const fn` called from `const`/`static`.
const fn div_by_zero() -> i32 {
1 / 0
}
const fn mk_false() -> bool {
false
}
fn main() {
let v = const {
if mk_false() {
let _x: &'static i32 = &div_by_zero();
}
42
};
}