We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
let type_ident = syn::Ident::new("type", proc_macro2::Span::call_site()); quote! { struct Demo { #type_ident:u8, } let a = Demo {#type_ident : 0u8}; }
expand=>
struct Demo { } let a = Demo {r#type: 0u8};
Is a bug or something?
The text was updated successfully, but these errors were encountered:
This is working correctly as far as I can tell. Probably there was an error elsewhere in your code.
Sorry, something went wrong.
No branches or pull requests
expand=>
Is a bug or something?
The text was updated successfully, but these errors were encountered: