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) ]
211
312#![ warn( clippy:: deprecated_cfg_attr) ]
413
514// This doesn't get linted, see known problems
615#![ cfg_attr( rustfmt, rustfmt_skip) ]
716
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+
829#[ cfg_attr( rustfmt, rustfmt_skip) ]
930fn main ( ) {
1031 foo:: f ( ) ;
You can’t perform that action at this time.
0 commit comments