mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
17 lines
283 B
Rust
17 lines
283 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() {
|
|
foo::f();
|
|
}
|
|
|
|
mod foo {
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
pub fn f() {}
|
|
}
|