summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/cfg_attr_rustfmt.rs
blob: 2fb140efae7680085af0ea9eab5c089edb1fd1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// run-rustfix
#![feature(stmt_expr_attributes, custom_inner_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() {
    #[cfg_attr(rustfmt, rustfmt::skip)]
    5+3;
}

#[cfg_attr(rustfmt, rustfmt_skip)]
fn main() {
    foo::f();
}

mod foo {
    #![cfg_attr(rustfmt, rustfmt_skip)]

    pub fn f() {}
}

fn msrv_1_29() {
    #![clippy::msrv = "1.29"]

    #[cfg_attr(rustfmt, rustfmt::skip)]
    1+29;
}

fn msrv_1_30() {
    #![clippy::msrv = "1.30"]

    #[cfg_attr(rustfmt, rustfmt::skip)]
    1+30;
}