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