Skip to content

Rollup of 17 pull requests #141644

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

Merged
merged 35 commits into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
3cd065d
macro expansion issue
Kivooeo May 2, 2025
7238669
intrinsics: reduce references to LLVM and update notes on where the i…
RalfJung May 24, 2025
ff33414
ScalarInt: support conversion with signed int types and cmp::Ordering
RalfJung May 24, 2025
77e295c
Improve `ambiguous_wide_pointer_comparisons` lint compare diagnostics
Urgau May 25, 2025
b71a127
dist: make sure llvm-project submodule is present
onur-ozkan May 26, 2025
0ea12c3
cfg_version: pull out dedicated syntax test from feature gate test
jieyouxu May 25, 2025
5e31cd3
Support opaque_types_defined_by for SyntheticCoroutineBody
compiler-errors May 26, 2025
1d35ac9
Add missing edition directives for async-await tests
Veykril May 26, 2025
c27aff3
Add test
BoxyUwU May 26, 2025
0497f31
rustc book: fix erratic sentence by making it more simple
tshepang May 26, 2025
19802e8
Remove an unnecessary use of `Box::into_inner`.
nnethercote May 26, 2025
108c16e
bootstrap: translate Windows paths in a way that works for both Cygwi…
jeremyd2019 May 26, 2025
6a8663a
Update mdbook to 0.4.51
ehuss May 26, 2025
c8ed2a7
Remove spastorino from vacations
spastorino May 26, 2025
7fe8263
use custom types to clarify arguments to `emit_ptr_va_arg`
folkertdev May 26, 2025
e0d4cf3
further dedup `WalkItemKind` for `mut_visit` and `visit`
fee1-dead May 27, 2025
3fff727
Use more detailed spans in dyn compat errors within bodies
oli-obk May 26, 2025
89c21f7
Remove out-of-date `noop_*` names.
nnethercote May 19, 2025
77e3594
Rollup merge of #140591 - Kivooeo:new-fix-five, r=davidtwco
compiler-errors May 27, 2025
a0d77f3
Rollup merge of #141536 - Urgau:ambi_wide_ptr-cmp-diag, r=fee1-dead
compiler-errors May 27, 2025
b7854c6
Rollup merge of #141552 - jieyouxu:cfg-version-tests, r=est31
compiler-errors May 27, 2025
f1371a8
Rollup merge of #141556 - jeremyd2019:patch-1, r=jieyouxu
compiler-errors May 27, 2025
7acdffb
Rollup merge of #141563 - nnethercote:rm-noop, r=petrochenkov
compiler-errors May 27, 2025
2c5361a
Rollup merge of #141568 - onur-ozkan:141393-fix, r=Kobzol
compiler-errors May 27, 2025
fbac805
Rollup merge of #141580 - oli-obk:early-dyn-catches-the-incompat, r=c…
compiler-errors May 27, 2025
fb4cc99
Rollup merge of #141582 - RalfJung:cleanup, r=bjorn3
compiler-errors May 27, 2025
9d46af1
Rollup merge of #141584 - compiler-errors:typing-env-synthetic-body, …
compiler-errors May 27, 2025
38d1862
Rollup merge of #141587 - ferrocene:lw-yurotqzwvwlw, r=jieyouxu
compiler-errors May 27, 2025
6344245
Rollup merge of #141594 - BoxyUwU:another_gai_test, r=jieyouxu
compiler-errors May 27, 2025
4b47bd4
Rollup merge of #141596 - tshepang:patch-2, r=Urgau
compiler-errors May 27, 2025
2de2e65
Rollup merge of #141599 - nnethercote:rm-Box-into_inner, r=fmease,che…
compiler-errors May 27, 2025
761dbc7
Rollup merge of #141611 - ehuss:update-mdbook, r=Mark-Simulacrum
compiler-errors May 27, 2025
1aa6a27
Rollup merge of #141616 - spastorino:remove-spastorino-on-vacations, …
compiler-errors May 27, 2025
f0ee1d7
Rollup merge of #141623 - folkertdev:va-arg-explicit-types, r=working…
compiler-errors May 27, 2025
d7e961a
Rollup merge of #141635 - fee1-dead-contrib:push-lmyymwotrspk, r=oli-obk
compiler-errors May 27, 2025
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
2 changes: 1 addition & 1 deletion compiler/rustc_errors/src/diagnostic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ impl<'a, G: EmissionGuarantee> Diag<'a, G> {
));
self.note("consider using `--verbose` to print the full type name to the console");
}
Box::into_inner(self.diag.take().unwrap())
*self.diag.take().unwrap()
}

/// This method allows us to access the path of the file where "long types" are written to.
Expand Down
1 change: 0 additions & 1 deletion compiler/rustc_errors/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#![feature(array_windows)]
#![feature(assert_matches)]
#![feature(associated_type_defaults)]
#![feature(box_into_inner)]
#![feature(box_patterns)]
#![feature(default_field_values)]
#![feature(error_reporter)]
Expand Down