rust-clippy/tests/ui/cfg_attr_lint.rs

18 lines
283 B
Rust
Raw Normal View History

2018-09-03 13:34:33 +00:00
#![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() {
foo::f();
}
mod foo {
#![cfg_attr(rustfmt, rustfmt_skip)]
pub fn f() {}
}