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
Something like
proc_macro2::Literal::string(&format!("Couldn't find {}", class_name));
will end up as "Couldn\'t find SomeProtocol" when used in quote! Since we're in a string surrounded by double quotes, the escaping there is useless.
"Couldn\'t find SomeProtocol"
quote!
The text was updated successfully, but these errors were encountered:
Thanks! I would accept a PR to fix this.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Something like
will end up as
"Couldn\'t find SomeProtocol"
when used inquote!
Since we're in a string surrounded by double quotes, the escaping there is useless.
The text was updated successfully, but these errors were encountered: