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
extern crate syn; #[macro_use] extern crate quote; fn main() { let ref int = syn::parse_token_trees("0_0").unwrap()[0]; println!("{}", quote!(#int)); }
0
This should print 0_0. Relevant for making sure not to corrupt input to other macros: #124.
The text was updated successfully, but these errors were encountered:
This should be fixed by #147, as we faithfully parse integers into Literal objects and don't interpret them now.
Literal
Sorry, something went wrong.
This is fixed on master 🎊 (see #158)
No branches or pull requests
This should print 0_0. Relevant for making sure not to corrupt input to other macros: #124.
The text was updated successfully, but these errors were encountered: