Skip to content

Rollup of 8 pull requests #132288

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

Closed
wants to merge 21 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
6d569f7
stabilize if_let_rescope
dingxiangfei2009 Oct 20, 2024
ad76564
Ensure that resume arg outlives region bound for coroutines
compiler-errors Oct 25, 2024
bb08f56
[StableMIR] A few fixes to pretty printing
celinval Oct 25, 2024
6ab87f8
Collect item bounds for RPITITs from trait where clauses just like as…
compiler-errors Oct 26, 2024
0bff994
split clippy task for library and compiler, so different lints can be…
klensy Oct 7, 2024
746b675
fix clippy::clone_on_ref_ptr for compiler
klensy Oct 7, 2024
a946721
clarified doc for `std::fs::OpenOptions.truncate()`
yakiimoninja Oct 28, 2024
3b2c906
Enhance test and fix arguments list
celinval Oct 28, 2024
5910a4f
clarified std::fs truncate doc
yakiimoninja Oct 28, 2024
a38d2fe
Improve code readability by using for loop
celinval Oct 28, 2024
d4774ff
Remove my ping for rustdoc/clean/types.rs
camelid Oct 28, 2024
b2f335e
Split `boxed.rs` into a few modules
WaffleLapkin Oct 27, 2024
f0744ca
Bless a miri test
WaffleLapkin Oct 28, 2024
8507a57
Rollup merge of #131375 - klensy:clone_on_ref_ptr, r=cjgillot
matthiaskrgr Oct 28, 2024
84e6f4e
Rollup merge of #131984 - dingxiangfei2009:stabilize-if-let-rescope, …
matthiaskrgr Oct 28, 2024
6927b51
Rollup merge of #132151 - compiler-errors:coroutine-resume-outlives, …
matthiaskrgr Oct 28, 2024
1ebb9ae
Rollup merge of #132161 - celinval:smir-fix-indent, r=compiler-errors
matthiaskrgr Oct 28, 2024
c255690
Rollup merge of #132194 - compiler-errors:rpitit-super-wc, r=spastorino
matthiaskrgr Oct 28, 2024
f23a38a
Rollup merge of #132233 - WaffleLapkin:box-module-split, r=workingjub…
matthiaskrgr Oct 28, 2024
1f0bfbf
Rollup merge of #132270 - yakiimoninja:fs-truncate-docs, r=Noratrieb
matthiaskrgr Oct 28, 2024
13df465
Rollup merge of #132284 - camelid:rm-ping, r=workingjubilee
matthiaskrgr Oct 28, 2024
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
Prev Previous commit
Next Next commit
Bless a miri test
After moving some `Box` internals to a different module,
the path in the diagnostic changed.
  • Loading branch information
WaffleLapkin authored and workingjubilee committed Oct 28, 2024
commit f0744ca357baf9dd2e88b3913d39f69216385f08
2 changes: 1 addition & 1 deletion src/tools/miri/tests/fail/coroutine-pinned-moved.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ note: inside `<CoroutineIteratorAdapter<{static coroutine@tests/fail/coroutine-p
|
LL | match me.resume(()) {
| ^^^^^^^^^^^^^
= note: inside `<std::boxed::Box<CoroutineIteratorAdapter<{static coroutine@tests/fail/coroutine-pinned-moved.rs:LL:CC}>> as std::iter::Iterator>::next` at RUSTLIB/alloc/src/boxed.rs:LL:CC
= note: inside `std::boxed::iter::<impl std::iter::Iterator for std::boxed::Box<CoroutineIteratorAdapter<{static coroutine@tests/fail/coroutine-pinned-moved.rs:LL:CC}>>>::next` at RUSTLIB/alloc/src/boxed/iter.rs:LL:CC
note: inside `main`
--> tests/fail/coroutine-pinned-moved.rs:LL:CC
|
Expand Down
Loading