[6.0][region-isolation] Treat async let as a isolation inference boundary closure and fix diagnostics due to change. #75080
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Explanation: Previously, we would infer async let's auto closure isolation from its DeclContext. I noticed this due to cases where async let was getting an actor instance's isolation. That is incorrect since an async let autoclosure should always
be nonisolated + sending.
The diagnostic change that I mentioned in the header is that we were emitting
unfortunate "sending task or actor isolated could result in races" error. I
eliminated this by adding a new diagnostic for transfer non transferrable errors
happening in autoclosures. So now we emit this:
Radars:
Original PRs:
Risk: Low. This only affects auto closures that work with async lets. We definitely want this since this could potentially affect source stability. That being said since it only should affect diagnostics this is safe to take (the task the async let runs is defined by other parts of the compiler, not by this code).
Testing: Added/Ran tests
Reviewer: N/A