-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Use reparsed TokenStream
if we captured any inner attributes
#78677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fixes rust-lang#78675 We now bail out of `prepend_attrs` if we ended up capturing any inner attributes (which can happen in several places, due to token capturing for `macro_rules!` arguments.
r? @lcnr (rust_highfive has picked a reviewer for you, use r? to override) |
@bors r+ |
📌 Commit 22383b3 has been approved by |
…r=petrochenkov Use reparsed `TokenStream` if we captured any inner attributes Fixes rust-lang#78675 We now bail out of `prepend_attrs` if we ended up capturing any inner attributes (which can happen in several places, due to token capturing for `macro_rules!` arguments.
⌛ Testing commit 22383b3 with merge d2eee11c497f87aa2caf0fb844e50861123145dd... |
💔 Test failed - checks-actions |
@bors retry |
⌛ Testing commit 22383b3 with merge 9160b30990bf3b9deb6c6705f14394f2fa64b3dd... |
💔 Test failed - checks-actions |
@bors retry |
⌛ Testing commit 22383b3 with merge 25eaa85bcb679a16066aabb7baa628eb66f7f648... |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
💔 Test failed - checks-actions |
@bors retry |
☀️ Test successful - checks-actions |
Fixes #78675
We now bail out of
prepend_attrs
if we ended up capturing any innerattributes (which can happen in several places, due to token capturing
for
macro_rules!
arguments.