Closed
Description
The following snippet works fine before nightly-2017-08-11-x86_64-unknown-linux-gnu
#![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:
- clone https://github.com/overvenus/poc.git
- rustup override set nightly-2017-08-11
- cargo test
Is this an expected behavior, or a bug? Thank you!