Skip to content
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

proc-macro applied with cfg_attr doesn’t see associated attributes #10110

Open
b8591340 opened this issue Sep 1, 2021 · 2 comments
Open

proc-macro applied with cfg_attr doesn’t see associated attributes #10110

b8591340 opened this issue Sep 1, 2021 · 2 comments
Labels
A-macro macro expansion E-hard S-actionable Someone could pick this issue up and work on it right now

Comments

@b8591340
Copy link

b8591340 commented Sep 1, 2021

#[cfg_attr(debug_assertions, derive(EnumKind), enum_kind(Kind, repr(u32)))]

#[macro_use]
extern crate enum_kinds;

#[cfg_attr(debug_assertions, derive(EnumKind), enum_kind(ValueId, repr(u32)))]
enum Value {
    A,
    B,
}
proc macro returned error: proc-macro panicked:
#[derive(EnumKind)] requires an associated `enum_kind` attribute to be specified

rustc 1.56.0-nightly (2f662b140 2021-08-29)

cargo check works, it builds correctly both in debug and release profiles.

@jonas-schievink jonas-schievink added A-macro macro expansion S-actionable Someone could pick this issue up and work on it right now E-hard labels Sep 1, 2021
@jonas-schievink
Copy link
Contributor

This is where our attribute processing during name resolution breaks down. The expected macro input is (I think):

#[enum_kind(ValueId, repr(u32))]
enum Value {
    A,
    B,
}

When we strip the #[derive], we end up removing the entire containing attribute.

@wyatt-herkamp
Copy link
Contributor

#16789 will partly fix this.
if the syntax is like

#[cfg_attr(debug_assertions, derive(EnumKind))]
#[cfg_attr(debug_assertions, enum_kind(ValueId, repr(u32)))]
enum Value {
    A,
    B,
}

However, if you combine the two attributes together it will continue to error out.

I can fix this after #16789 merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-macro macro expansion E-hard S-actionable Someone could pick this issue up and work on it right now
Projects
None yet
Development

No branches or pull requests

3 participants