mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
8 lines
182 B
Rust
8 lines
182 B
Rust
#![allow(unused)]
|
|
|
|
#[cfg(all())]
|
|
//~^ ERROR: unneeded sub `cfg` when there is no condition
|
|
//~| NOTE: `-D clippy::non-minimal-cfg` implied by `-D warnings`
|
|
fn all() {}
|
|
|
|
fn main() {}
|