We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
webrender
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
I don't know how this happened, but we're reporting more unknown types in the bitflags! expansions.
bitflags!
webrender is https://github.com/rust-lang/rustc-perf.git at c52ee623e231e7690a93be88d943016968c1036b.
c52ee623e231e7690a93be88d943016968c1036b
EDIT:
Looks like manually expanding that macro makes the errors go away. Repro, note that the second item is needed:
# bitflags = "1.0" use bitflags::bitflags; bitflags! { #[repr(C)] pub struct FontInstanceFlags: u32 { const SYNTHETIC_ITALICS = 1 << 0; const SYNTHETIC_BOLD = 1 << 1; } }
Are we choking on $crate?
$crate
The text was updated successfully, but these errors were encountered:
CC @lowr
Sorry, something went wrong.
d6412b5
cc #12993
For future reference, we were failing to resolve the try!() macro used without escaping in Rust 2015 crates.
try!()
Makes more sense than crate. Somehow I missed those in the expansion 😕.
Successfully merging a pull request may close this issue.
I don't know how this happened, but we're reporting more unknown types in the
bitflags!
expansions.webrender
is https://github.com/rust-lang/rustc-perf.git atc52ee623e231e7690a93be88d943016968c1036b
.EDIT:
Looks like manually expanding that macro makes the errors go away. Repro, note that the second item is needed:
Are we choking on
$crate
?The text was updated successfully, but these errors were encountered: