]> git.lizzy.rs Git - rust.git/blob - tests/ui/cfg_attr_rustfmt.rs
Rename test files
[rust.git] / tests / ui / cfg_attr_rustfmt.rs
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)]
11
12 #![warn(clippy::deprecated_cfg_attr)]
13
14 // This doesn't get linted, see known problems
15 #![cfg_attr(rustfmt, rustfmt_skip)]
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
29 #[cfg_attr(rustfmt, rustfmt_skip)]
30 fn main() {
31     foo::f();
32 }
33
34 mod foo {
35     #![cfg_attr(rustfmt, rustfmt_skip)]
36
37     pub fn f() {}
38 }