Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 95049a4

Browse files
committed
Auto merge of rust-lang#116563 - matthiaskrgr:rollup-4ttoyns, r=matthiaskrgr
Rollup of 5 pull requests Successful merges: - rust-lang#115882 (improve the suggestion of `generic_bound_failure`) - rust-lang#116537 (Fix suggestion span involving wrongly placed generic arg on variant) - rust-lang#116543 (In smir `find_crates` returns `Vec<Crate>` instead of `Option<Crate>`) - rust-lang#116548 (Improve handling of assertion failures with very long conditions) - rust-lang#116556 (Sync rustc_codegen_cranelift) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 7ed044c + 33b894c commit 95049a4

File tree

139 files changed

+2764
-1462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+2764
-1462
lines changed

compiler/rustc_builtin_macros/src/assert.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pub fn expand_assert<'cx>(
8585
DUMMY_SP,
8686
Symbol::intern(&format!(
8787
"assertion failed: {}",
88-
pprust::expr_to_string(&cond_expr).escape_debug()
88+
pprust::expr_to_string(&cond_expr)
8989
)),
9090
)],
9191
);

0 commit comments

Comments
 (0)