Urgau
Urgau
It believe that `#[cfg]` attrs are not preserved after expansion, which I think is why all `#[cfg]` related lints run in pre-expension in [`EarlyAttributes`](https://github.com/rust-lang/rust-clippy/blob/4f3180adac9ff2da34c319fe17baa19e2580d09b/clippy_lints/src/attrs/mod.rs#L546-L564). Regarding the high risk of FP,...
> To allow for stabilization, this is only enabled starting from the next edition. Maybe a better policy is possible (bikeshed). I don't think we currently have any command line...
Those perf results seems to be mostly noise. [Instruction count](https://perf.rust-lang.org/compare.html?start=ba86c0460b0233319e01fd789a42a7276eade805&end=05b33656fd9ded2829b42521378e6fa37f788cc6&stat=instructions:u) saw a lot of variability but is overall positive for primary, but more interestingly Max RSS, Cycles and [Wall Time](https://perf.rust-lang.org/compare.html?start=ba86c0460b0233319e01fd789a42a7276eade805&end=05b33656fd9ded2829b42521378e6fa37f788cc6&stat=wall-time)...
@bors try jobs=armhf-gnu
Does it mean we would get warnings for non-active cfg attributes? ```rust #[cfg(target_os = "lol")] // warn and not active #[cfg(unknown)] // currently doesn't warn, since above is not active,...
@bors try @rust-timer queue
@bors try @rust-timer queue
Does this reproduce with the any of the wasi targets? or it is just unsound with `wasm32-unknown-unknown`? As for the unsoundness one could argue that it is in JS glue,...