Remove special handling of obsolete impl Trait for .. syntax#121072
Closed
nnethercote wants to merge 1 commit intorust-lang:masterfrom
Closed
Remove special handling of obsolete impl Trait for .. syntax#121072nnethercote wants to merge 1 commit intorust-lang:masterfrom
impl Trait for .. syntax#121072nnethercote wants to merge 1 commit intorust-lang:masterfrom
Conversation
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 ancient (pre-1.0) RFC 19 suggested using
impl Trait for ..syntax for default traits. That was later changed toauto trait Trait {}syntax. The parser has special treatment for the..syntax, suggesting theautosyntax.Given that default traits have not be stabilized and the
..syntax is so old, the special case seems unnecessary, and it gets in the way of addingErrorGuaranteedtoTyKind::Err. This commit removes it and the tests.r? @oli-obk