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? 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
It treats something like feature=bar as a single MetaWord instead of a MetaNameValue. This is due to the code on lines 70-73 of librustdoc/test.rs:
feature=bar
MetaWord
MetaNameValue
cfg.extend(cfgs.into_iter().map(|cfg_| { let cfg_ = token::intern_and_get_ident(&cfg_); P(dummy_spanned(ast::MetaWord(cfg_))) }));
I have a PR for this that I will open shortly.
The text was updated successfully, but these errors were encountered:
rollup merge of rust-lang#22135: apasel422/issue-22131
8b44cf2
fixes rust-lang#22131
Successfully merging a pull request may close this issue.
It treats something like
feature=bar
as a singleMetaWord
instead of aMetaNameValue
. This is due to the code on lines 70-73 of librustdoc/test.rs:I have a PR for this that I will open shortly.
The text was updated successfully, but these errors were encountered: