-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Visit all attributes for feature collection #53397
Visit all attributes for feature collection #53397
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@bors r+ |
📌 Commit 23d10ec has been approved by |
@varkor this is kind of a regression, I suppose? |
@nikomatsakis: this change potentially permits more features than before (for example the (I also imagine the current behaviour didn't miss many feature attributes, because most would have appeared in tests. |
@varkor sorry, to be clear, what I meant is: This PR is fixing a regression where we were previously getting errors about "unrecognized feature" when indeed the feature was legitimate? In particular I was wondering if we want |
@nikomatsakis: oh, sorry, yes that is the case. @bors p=1 |
⌛ Testing commit 23d10ec with merge f7d31968fb2cc3a847ae5a8034b350d3981be744... |
@bors retry (higher priory PR had a spurious failure) |
Your PR failed on Travis (raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem. 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 |
…omatsakis Visit all attributes for feature collection Previously feature attributes were just collected on item-like "things" as well as exported macros and crate attributes. This ignored some places feature attributes could be specified, such as on enum variants. Fixes #53391.
☀️ Test successful - status-appveyor, status-travis |
Previously feature attributes were just collected on item-like "things" as well as exported macros and crate attributes. This ignored some places feature attributes could be specified, such as on enum variants.
Fixes #53391.