about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/non_minimal_cfg2.rs
blob: d073feedb1da27f5c26cf15471e909ec1abd2a7c (plain)
1
2
3
4
5
6
7
8
9
//@require-annotations-for-level: WARN
#![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() {}