Skip to content

tests: add UI test for .swap() suggestion#159719

Merged
rust-bors[bot] merged 2 commits into
rust-lang:mainfrom
ssenthilnathan3:ui-test/add-suggest-swap
Jul 24, 2026
Merged

tests: add UI test for .swap() suggestion#159719
rust-bors[bot] merged 2 commits into
rust-lang:mainfrom
ssenthilnathan3:ui-test/add-suggest-swap

Conversation

@ssenthilnathan3

@ssenthilnathan3 ssenthilnathan3 commented Jul 22, 2026

Copy link
Copy Markdown

adds a UI test covering the borrow checker diagnostic that suggests using
.swap() when std::mem::swap(&mut arr[i], &mut arr[j]) is used.

closes #159664

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Jul 22, 2026
@rustbot

rustbot commented Jul 22, 2026

Copy link
Copy Markdown
Collaborator

Thanks for the pull request, and welcome! The Rust Project is excited to review your changes, and you should hear from @chenyukang (or someone else) some time within the next two weeks.

Please see the contribution instructions for more information. Namely, in order to ensure the minimum review times lag, PR authors and assigned reviewers should ensure that the review label (S-waiting-on-review and S-waiting-on-author) stays updated, invoking these commands when appropriate:

  • @rustbot author: the review is finished, PR author should check the comments and take action accordingly
  • @rustbot review: the author is ready for a review, this PR will be queued again in the reviewer's queue
Why was this reviewer chosen?

The reviewer was selected based on:

  • Owners of files modified in this PR: compiler
  • compiler expanded to 74 candidates
  • Random selection from 20 candidates

Comment thread tests/ui/suggestions/suggest-swap.rs
@ssenthilnathan3

Copy link
Copy Markdown
Author

@rustbot review

@chenyukang

Copy link
Copy Markdown
Member

@bors r+ rollup

@rust-bors

rust-bors Bot commented Jul 23, 2026

Copy link
Copy Markdown
Contributor

📌 Commit d548240 has been approved by chenyukang

It is now in the queue for this repository.

@rust-bors rust-bors Bot added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 23, 2026
jhpratt added a commit to jhpratt/rust that referenced this pull request Jul 23, 2026
…t-swap, r=chenyukang

tests: add UI test for `.swap()` suggestion

adds a UI test covering the borrow checker diagnostic that suggests using
`.swap()` when `std::mem::swap(&mut arr[i], &mut arr[j])` is used.

closes rust-lang#159664
rust-bors Bot pushed a commit that referenced this pull request Jul 24, 2026
Rollup of 20 pull requests

Successful merges:

 - #150161 (Remove 'static requirement on try_as_dyn)
 - #159412 (Reorganize `tests/ui/issues` [26/N])
 - #159466 (cmse: clear variant-dependent padding in `enum`s)
 - #157905 (Update comments and add tests for `-Zrandomize-layout` for some guaranteed ZSTs)
 - #158479 (Reject static item as direct const generic arg)
 - #159041 (Reorganize `tests/ui/issues` [22/N])
 - #159108 (Reorganize `tests/ui/issues` [23/N])
 - #159138 (doc: document wasm import symbol mangling)
 - #159531 (Reorganize `tests/ui/issues` [28/N])
 - #159608 (early_otherwise: Don't hoist dereferences when the otherwise branch is reachable)
 - #159612 (Reorganize `tests/ui/issues` [29/N])
 - #159653 (run `tests/assembly-llvm/asm/aarch64-types.rs` for `aarch64_be`)
 - #159719 (tests: add UI test for `.swap()` suggestion)
 - #159737 (rustfmt fix: allow file not found errors for external mods annotated with `#[my_macro]`)
 - #159759 (rustc-dev-guide subtree update)
 - #159761 (Remove outdated comment for resolve_vars_with_obligations)
 - #159764 (use `minicore::simd::Simd` more)
 - #159773 (Remove outdated workaround for `P` type)
 - #159778 (use lowest edition the test accepts)
 - #159788 (Avoid ICEing in RPIT method chain suggestion)
@rust-bors
rust-bors Bot merged commit c1758b6 into rust-lang:main Jul 24, 2026
13 checks passed
@rustbot rustbot added this to the 1.99.0 milestone Jul 24, 2026
rust-timer added a commit that referenced this pull request Jul 24, 2026
Rollup merge of #159719 - ssenthilnathan3:ui-test/add-suggest-swap, r=chenyukang

tests: add UI test for `.swap()` suggestion

adds a UI test covering the borrow checker diagnostic that suggests using
`.swap()` when `std::mem::swap(&mut arr[i], &mut arr[j])` is used.

closes #159664
github-actions Bot pushed a commit to rust-lang/rustc-dev-guide that referenced this pull request Jul 25, 2026
Rollup of 20 pull requests

Successful merges:

 - rust-lang/rust#150161 (Remove 'static requirement on try_as_dyn)
 - rust-lang/rust#159412 (Reorganize `tests/ui/issues` [26/N])
 - rust-lang/rust#159466 (cmse: clear variant-dependent padding in `enum`s)
 - rust-lang/rust#157905 (Update comments and add tests for `-Zrandomize-layout` for some guaranteed ZSTs)
 - rust-lang/rust#158479 (Reject static item as direct const generic arg)
 - rust-lang/rust#159041 (Reorganize `tests/ui/issues` [22/N])
 - rust-lang/rust#159108 (Reorganize `tests/ui/issues` [23/N])
 - rust-lang/rust#159138 (doc: document wasm import symbol mangling)
 - rust-lang/rust#159531 (Reorganize `tests/ui/issues` [28/N])
 - rust-lang/rust#159608 (early_otherwise: Don't hoist dereferences when the otherwise branch is reachable)
 - rust-lang/rust#159612 (Reorganize `tests/ui/issues` [29/N])
 - rust-lang/rust#159653 (run `tests/assembly-llvm/asm/aarch64-types.rs` for `aarch64_be`)
 - rust-lang/rust#159719 (tests: add UI test for `.swap()` suggestion)
 - rust-lang/rust#159737 (rustfmt fix: allow file not found errors for external mods annotated with `#[my_macro]`)
 - rust-lang/rust#159759 (rustc-dev-guide subtree update)
 - rust-lang/rust#159761 (Remove outdated comment for resolve_vars_with_obligations)
 - rust-lang/rust#159764 (use `minicore::simd::Simd` more)
 - rust-lang/rust#159773 (Remove outdated workaround for `P` type)
 - rust-lang/rust#159778 (use lowest edition the test accepts)
 - rust-lang/rust#159788 (Avoid ICEing in RPIT method chain suggestion)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Existing structured suggestion for (&mut [_])::swap isn't tested

4 participants