We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
macro_rules! gen_test { () => ( fn test() { println!("{}", box 1); } ); } gen_test!(); fn main() { test(); //println!("{}", box 1); // error, requires #![feature(box_syntax)] }
The text was updated successfully, but these errors were encountered:
Dup of #20661
Sorry, something went wrong.
I don't think that's a proper dup. My bad for not writing a truly minimal test case, I suppose.
macro_rules! gen_test { () => ( fn test() { box 1; } ); } gen_test!(); fn main() { test(); //box 1; // error, requires #![feature(box_syntax)] }
Ah, sorry about that! Nominating.
While not a dupe of #20661, I think this is a dupe of #12122
No branches or pull requests
The text was updated successfully, but these errors were encountered: