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
Consider the following (malformed) macro definition:
#![feature(macro_rules)] macro_rules! foo( (i: ident) => ( i[0] = 7; ); ) fn main() { let mut i = vec!(0u, 1, 2, 3); foo!(); println!("{}", i); }
Compiling this fails with:
<anon>:1:1: 1:1 error: unexpected end of macro invocation <anon>:1 #![feature(macro_rules)] ^
This isn't helpful.
The text was updated successfully, but these errors were encountered:
Dupe of #7970.
Sorry, something went wrong.
Auto merge of rust-lang#18328 - Veykril:veykril/push-zrzmmyqzqwyr, r=…
6b919c4
…Veykril fix: Fix CI running analysis-stats incorrectly against the standard libraries Fixes rust-lang/rust-analyzer#18326
No branches or pull requests
Consider the following (malformed) macro definition:
Compiling this fails with:
This isn't helpful.
The text was updated successfully, but these errors were encountered: