]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #107813 - compiler-errors:bad-impl-trait-in-macro-is-ok, r=estebank
authorMichael Goulet <michael@errs.io>
Thu, 9 Feb 2023 04:01:26 +0000 (20:01 -0800)
committerGitHub <noreply@github.com>
Thu, 9 Feb 2023 04:01:26 +0000 (20:01 -0800)
commitab09405e99ec2a0feab5750eed67c8a35051f5f3
tree891702b5fb22991effdf2b6109c5d4feb8f2874c
parent46c7c91ce746e9edb94dad5a4d4d5fd682582c78
parent0017822b708d2dde46fa603592d322951dc7ba0a
Rollup merge of #107813 - compiler-errors:bad-impl-trait-in-macro-is-ok, r=estebank

Do not eagerly recover for bad `impl Trait` types in macros

Fixes #107796

cc #106712, ```@estebank``` and ```@Ezrashaw``` please make sure to use [`Parser::may_recover`](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_parse/parser/struct.Parser.html#method.may_recover) for all eager-token-consuming parser recoveries.

This also fixes a separate regression from #99915, that was introduced before we added `may_recover` though.