Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug with assert!() calling the wrong edition of panic!(). #81647

Merged
merged 2 commits into from
Feb 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compiler/rustc_builtin_macros/src/assert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ pub fn expand_assert<'cx>(

let panic_call = if let Some(tokens) = custom_message {
let path = if span.rust_2021() {
// On edition 2021, we always call `$crate::panic!()`.
// On edition 2021, we always call `$crate::panic::panic_2021!()`.
Path {
span: sp,
segments: cx
.std_path(&[sym::panic])
.std_path(&[sym::panic, sym::panic_2021])
.into_iter()
.map(|ident| PathSegment::from_ident(ident))
.collect(),
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/macros/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ pub(crate) mod builtin {
#[rustc_builtin_macro]
#[macro_export]
#[rustc_diagnostic_item = "assert_macro"]
#[allow_internal_unstable(core_panic)]
#[allow_internal_unstable(core_panic, edition_panic)]
macro_rules! assert {
($cond:expr $(,)?) => {{ /* compiler built-in */ }};
($cond:expr, $($arg:tt)+) => {{ /* compiler built-in */ }};
Expand Down
9 changes: 9 additions & 0 deletions src/test/ui/panics/panic-2021.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// edition:2021

fn main() {
panic!(123); //~ ERROR: format argument must be a string literal
panic!("{}"); //~ ERROR: 1 positional argument in format string
core::panic!("{}"); //~ ERROR: 1 positional argument in format string
assert!(false, 123); //~ ERROR: format argument must be a string literal
assert!(false, "{}"); //~ ERROR: 1 positional argument in format string
}
42 changes: 42 additions & 0 deletions src/test/ui/panics/panic-2021.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
error: format argument must be a string literal
--> $DIR/panic-2021.rs:4:12
|
LL | panic!(123);
| ^^^
|
help: you might be missing a string literal to format with
|
LL | panic!("{}", 123);
| ^^^^^

error: 1 positional argument in format string, but no arguments were given
--> $DIR/panic-2021.rs:5:13
|
LL | panic!("{}");
| ^^

error: 1 positional argument in format string, but no arguments were given
--> $DIR/panic-2021.rs:6:19
|
LL | core::panic!("{}");
| ^^

error: format argument must be a string literal
--> $DIR/panic-2021.rs:7:20
|
LL | assert!(false, 123);
| ^^^
|
help: you might be missing a string literal to format with
|
LL | assert!(false, "{}", 123);
| ^^^^^

error: 1 positional argument in format string, but no arguments were given
--> $DIR/panic-2021.rs:8:21
|
LL | assert!(false, "{}");
| ^^

error: aborting due to 5 previous errors