| |
| #![feature(stmt_expr_attributes)] |
| |
| #![allow(unused, clippy::no_effect, clippy::unnecessary_operation)] |
| #![warn(clippy::deprecated_cfg_attr)] |
| |
| // This doesn't get linted, see known problems |
| #![cfg_attr(rustfmt, rustfmt_skip)] |
| |
| #[rustfmt::skip] |
| trait Foo |
| { |
| fn foo( |
| ); |
| } |
| |
| fn skip_on_statements() { |
| #[rustfmt::skip] |
| //~^ deprecated_cfg_attr |
| 5+3; |
| } |
| |
| #[rustfmt::skip] |
| //~^ deprecated_cfg_attr |
| fn main() { |
| foo::f(); |
| } |
| |
| mod foo { |
| #![cfg_attr(rustfmt, rustfmt_skip)] |
| |
| pub fn f() {} |
| } |
| |
| #[clippy::msrv = "1.29"] |
| fn msrv_1_29() { |
| #[cfg_attr(rustfmt, rustfmt::skip)] |
| 1+29; |
| } |
| |
| #[clippy::msrv = "1.30"] |
| fn msrv_1_30() { |
| #[rustfmt::skip] |
| //~^ deprecated_cfg_attr |
| 1+30; |
| } |