rust-clippy/tests/ui/cfg_attr_lint.rs
2018-11-02 19:49:58 +01:00

9 lines
196 B
Rust

#![feature(tool_lints)]
#![warn(clippy::deprecated_cfg_attr)]
// This doesn't get linted, see known problems
#![cfg_attr(rustfmt, rustfmt_skip)]
#[cfg_attr(rustfmt, rustfmt_skip)]
fn main() {}