File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 1
- #![ feature( tool_lints) ]
1
+ // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2
+ // file at the top-level directory of this distribution.
3
+ //
4
+ // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6
+ // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7
+ // option. This file may not be copied, modified, or distributed
8
+ // except according to those terms.
9
+
10
+ #![ feature( stmt_expr_attributes) ]
2
11
3
12
#![ warn( clippy:: deprecated_cfg_attr) ]
4
13
5
14
// This doesn't get linted, see known problems
6
15
#![ cfg_attr( rustfmt, rustfmt_skip) ]
7
16
17
+ #[ rustfmt:: skip]
18
+ trait Foo
19
+ {
20
+ fn foo (
21
+ ) ;
22
+ }
23
+
24
+ fn skip_on_statements ( ) {
25
+ #[ cfg_attr( rustfmt, rustfmt:: skip) ]
26
+ 5 +3 ;
27
+ }
28
+
8
29
#[ cfg_attr( rustfmt, rustfmt_skip) ]
9
30
fn main ( ) {
10
31
foo:: f ( ) ;
You can’t perform that action at this time.
0 commit comments