rust-clippy/tests/ui/non_minimal_cfg2.rs

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() {}