about summary refs log tree commit diff
path: root/tests/ui/liveness
AgeCommit message (Collapse)AuthorLines
2025-01-23omit unused args warnings for intrinsics without bodyvayunbiyani-14/+20
2024-11-26tests: remove `//@ pretty-expanded` usages许杰友 Jieyou Xu (Joe)-1/+0
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
2024-07-04Better span for "make binding mutable" suggestionEsteban Küber-18/+26
2024-04-24Error on using `yield` without also using `#[coroutine]` on the closureOli Scherer-2/+2
And suggest adding the `#[coroutine]` to the closure
2024-03-11Revert "Auto merge of #122140 - oli-obk:track_errors13, r=davidtwco"Oli Scherer-32/+32
This reverts commit 65cd843ae06ad00123c131a431ed5304e4cd577a, reversing changes made to d255c6a57c393db6221b1ff700daea478436f1cd.
2024-03-11Run a single huge `par_body_owners` instead of many small ones after each other.Oli Scherer-32/+32
This improves parallel rustc parallelism by avoiding the bottleneck after each individual `par_body_owners` (because it needs to wait for queries to finish, so if there is one long running one, a lot of cores will be idle while waiting for the single query).
2024-02-19Always evaluate free constants and statics, even if previous errors occurredOli Scherer-6/+6
2024-02-16[AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives许杰友 Jieyou Xu (Joe)-9/+9
2024-02-08Continue to borrowck even if there were previous errorsOli Scherer-2/+14
2023-11-24Show number in error message even for one errorNilstrieb-14/+14
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-10-20s/generator/coroutine/Oli Scherer-4/+4
2023-07-14use maybe_body_owned_by for closureyukang-0/+38
2023-05-25Remove DesugaringKind::Replace.Camille GILLOT-1/+0
2023-05-21Rename `drop_copy` lint to `dropping_copy_types`Urgau-1/+1
2023-05-10Adjust tests for new drop and forget lintsUrgau-1/+1
2023-04-21Run `check_match` and `check_liveness` when MIR is built instead of having ↵Oli Scherer-26/+27
an explicit phase for them
2023-03-03Desugars drop and replace at MIR buildGiacomo Pasini-0/+1
This commit desugars the drop and replace deriving from an assignment at MIR build, avoiding the construction of the DropAndReplace terminator (which will be removed in a followign PR) In order to retain the same error messages for replaces a new DesugaringKind::Replace variant is introduced.
2023-01-11Move /src/test to /testsAlbert Larsan-0/+1378