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
I'm pretty sure that the worst error messages I'm seeing now are from #[topo::nested] functions (removing the annotation improves the error message).
#[topo::nested]
The text was updated successfully, but these errors were encountered:
This occurs with literally any logic in the proc macro, including just a parse/quote pair:
#[proc_macro_attribute] pub fn nested(args: TokenStream, input: TokenStream) -> TokenStream { let mut input_fn: ItemFn = syn::parse(input).unwrap(); // other stuff normally goes here input_fn.into_token_stream().into() }
Sorry, something went wrong.
Based on dtolnay/async-trait#91 (comment) this is caused by a compiler bug (rust-lang/rust#43081)
Should be resolved by rust-lang/rust#72306.
rustup
38dccae
Closes #123
74e77c7
No branches or pull requests
I'm pretty sure that the worst error messages I'm seeing now are from
#[topo::nested]
functions (removing the annotation improves the error message).The text was updated successfully, but these errors were encountered: