Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #126374 - workingjubilee:rollup-tz0utfr, r=workingjubilee
Rollup of 10 pull requests
Successful merges:
- #125674 (Rewrite `symlinked-extern`, `symlinked-rlib` and `symlinked-libraries` `run-make` tests in `rmake.rs` format)
- #125688 (Walk into alias-eq nested goals even if normalization fails)
- #126142 (Harmonize using root or leaf obligation in trait error reporting)
- #126303 (Urls to docs in rust_hir)
- #126328 (Add Option::is_none_or)
- #126337 (Add test for walking order dependent opaque type behaviour)
- #126353 (Move `MatchAgainstFreshVars` to old solver)
- #126356 (docs(rustc): Improve discoverable of Cargo docs)
- #126358 (safe transmute: support `Single` enums)
- #126362 (Make `try_from_target_usize` method public)
r? `@ghost`
`@rustbot` modify labels: rollup
| -rw-r--r-- | crates/hir-ty/src/display.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/hir-ty/src/display.rs b/crates/hir-ty/src/display.rs index 5a9621bb69..241690d008 100644 --- a/crates/hir-ty/src/display.rs +++ b/crates/hir-ty/src/display.rs @@ -1387,6 +1387,7 @@ fn generic_args_sans_defaults<'ga>( } // otherwise, if the arg is equal to the param default, hide it (unless the // default is an error which can happen for the trait Self type) + #[allow(unstable_name_collisions)] default_parameters.get(i).is_none_or(|default_parameter| { // !is_err(default_parameter.skip_binders()) // && |