blob: f55920db550340aa368ff139d9690fed43cd9908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#![warn(clippy::deprecated_clippy_cfg_attr)]
#![allow(clippy::non_minimal_cfg)]
#![cfg_attr(clippy, doc = "a")]
//~^ deprecated_clippy_cfg_attr
#[cfg_attr(clippy, derive(Debug))]
//~^ deprecated_clippy_cfg_attr
#[cfg_attr(not(clippy), derive(Debug))]
//~^ deprecated_clippy_cfg_attr
#[cfg(clippy)]
//~^ deprecated_clippy_cfg_attr
#[cfg(not(clippy))]
//~^ deprecated_clippy_cfg_attr
#[cfg(any(clippy))]
//~^ deprecated_clippy_cfg_attr
#[cfg(all(clippy))]
//~^ deprecated_clippy_cfg_attr
pub struct Bar;
fn main() {}
|