mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-15 05:26:47 +00:00
Add regression test
This commit is contained in:
parent
0a689c1be8
commit
44e199bf30
21
tests/ui/inline-const/promotion.rs
Normal file
21
tests/ui/inline-const/promotion.rs
Normal 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
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user