Remove FIXME about NLL diagnostic that is already improved#114558
Merged
bors merged 1 commit intorust-lang:masterfrom Aug 7, 2023
Merged
Remove FIXME about NLL diagnostic that is already improved#114558bors merged 1 commit intorust-lang:masterfrom
bors merged 1 commit intorust-lang:masterfrom
Conversation
Collaborator
|
r? @cjgillot (rustbot has picked a reviewer for you, use r? to override) |
This comment was marked as resolved.
This comment was marked as resolved.
The FIXME was added in 46984 when the diagnostic message looked like
this:
// FIXME(rust-lang#46983): error message should be better
&s.0 //~ ERROR free region `` does not outlive free region `'static`
The message was improved in 90667 and now looks like this:
&s.0 //~ ERROR lifetime may not live long enough
but the FIXME was not removed. The issue 46983 about that diagnostics
should be improved has been closed. We can remove the FIXME now.
a15e0f5 to
8a75209
Compare
Contributor
|
@bors r+ rollup |
Collaborator
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Aug 6, 2023
…iaskrgr Rollup of 6 pull requests Successful merges: - rust-lang#114535 (bump schannel, miow to drop windows-sys 0.42) - rust-lang#114542 (interpret: use ConstPropNonsense for more const-prop induced issues) - rust-lang#114543 (add tests for some fixed ConstProp ICEs) - rust-lang#114550 (Generate better function argument names in global_allocator expansion) - rust-lang#114556 (Issue numbers are enforced on active features; remove FIXME) - rust-lang#114558 (Remove FIXME about NLL diagnostic that is already improved) Failed merges: - rust-lang#114485 (Add trait decls to SMIR) r? `@ghost` `@rustbot` modify labels: rollup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The FIXME was added in #46984 when the diagnostic message looked like this:
The message was improved in #90667 and now looks like this:
but the FIXME was not removed. The issue #46983 about that diagnostics should be improved has been closed. We can remove the FIXME now.
(This PR was made for #44366.)