Skip to content

Commit ec84633

Browse files
authored
Rollup merge of #90687 - jhpratt:const_panic, r=oli-obk
Permit const panics in stable const contexts in stdlib Without this change, it is not possible to use `panic!` and similar (including `assert!`) in stable const contexts inside of stdlib. See #89542 for a real-world case that currently fails for this reason. This does _not_ affect any user code. For example, this snippet currently fails to compile: ```rust #[stable(feature = "foo", since = "1.0.0")] #[rustc_const_stable(feature = "foo", since = "1.0.0")] const fn foo() { assert!(false); assert!(false, "foo"); } ``` With the addition of `#[rustc_const_unstable]` to `core::panicking::panic`, the error no longer occurs. This snippet has been added verbatim in this PR as a UI test. To avoid needing to add `#![feature(core_panic)]` to libcore, the two instances of direct calls to `core::panicking::panic` have been switched to use the `panic!` macro. I am requesting prioritization because this is holding up other stabilizations such as #89542 (which is otherwise ready to merge and succeeds with this change)
2 parents d7b8688 + 6d2f8af commit ec84633

File tree

5 files changed

+49
-2
lines changed

5 files changed

+49
-2
lines changed

library/core/src/panicking.rs

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ use crate::panic::{Location, PanicInfo};
3636
#[cfg_attr(not(feature = "panic_immediate_abort"), inline(never))]
3737
#[cfg_attr(feature = "panic_immediate_abort", inline)]
3838
#[track_caller]
39+
#[rustc_const_unstable(feature = "core_panic", issue = "none")]
3940
#[lang = "panic"] // needed by codegen for panic on overflow and other `Assert` MIR terminators
4041
pub const fn panic(expr: &'static str) -> ! {
4142
// Use Arguments::new_v1 instead of format_args!("{}", expr) to potentially

library/core/src/time.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ impl Duration {
727727
pub const fn from_secs_f64(secs: f64) -> Duration {
728728
match Duration::try_from_secs_f64(secs) {
729729
Ok(v) => v,
730-
Err(e) => crate::panicking::panic(e.description()),
730+
Err(e) => panic!("{}", e.description()),
731731
}
732732
}
733733

@@ -788,7 +788,7 @@ impl Duration {
788788
pub const fn from_secs_f32(secs: f32) -> Duration {
789789
match Duration::try_from_secs_f32(secs) {
790790
Ok(v) => v,
791-
Err(e) => crate::panicking::panic(e.description()),
791+
Err(e) => panic!("{}", e.description()),
792792
}
793793
}
794794

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
warning: panic message is not a string literal
2+
--> $DIR/const_panic_stability.rs:14:12
3+
|
4+
LL | panic!({ "foo" });
5+
| ^^^^^^^^^
6+
|
7+
= note: `#[warn(non_fmt_panics)]` on by default
8+
= note: this usage of panic!() is deprecated; it will be a hard error in Rust 2021
9+
= note: for more information, see <https://doc.rust-lang.org/nightly/edition-guide/rust-2021/panic-macro-consistency.html>
10+
help: add a "{}" format string to Display the message
11+
|
12+
LL | panic!("{}", { "foo" });
13+
| +++++
14+
15+
warning: 1 warning emitted
16+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
error: format argument must be a string literal
2+
--> $DIR/const_panic_stability.rs:14:12
3+
|
4+
LL | panic!({ "foo" });
5+
| ^^^^^^^^^
6+
|
7+
help: you might be missing a string literal to format with
8+
|
9+
LL | panic!("{}", { "foo" });
10+
| +++++
11+
12+
error: aborting due to previous error
13+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// revisions: e2018 e2021
2+
//[e2018] edition:2018
3+
//[e2021] edition:2021
4+
//[e2018] check-pass
5+
#![crate_type = "lib"]
6+
#![stable(feature = "foo", since = "1.0.0")]
7+
#![feature(staged_api)]
8+
9+
#[stable(feature = "foo", since = "1.0.0")]
10+
#[rustc_const_stable(feature = "foo", since = "1.0.0")]
11+
const fn foo() {
12+
assert!(false);
13+
assert!(false, "foo");
14+
panic!({ "foo" });
15+
//[e2018]~^ WARNING panic message is not a string literal
16+
//[e2021]~^^ ERROR format argument must be a string literal
17+
}

0 commit comments

Comments
 (0)