The following snippet works fine before `nightly-2017-08-11-x86_64-unknown-linux-gnu` ```rust #![allow(unknown_lints)] #![allow(clippy)] ``` but now it reports a warning: ``` warning: unknown lint: `clippy` --> /home/poc/src/../a/b.rs:2:10 | 2 | #![allow(clippy)] | ^^^^^^ | = note: #[warn(unknown_lints)] on by default ``` Steps to reproduce: 1. clone https://github.com/overvenus/poc.git 2. rustup override set nightly-2017-08-11 3. cargo test Is this an expected behavior, or a bug? Thank you!