Skip to content

Commit 7df7a0a

Browse files
committed
Add tests from rustfmt::skip test file
1 parent bb4083c commit 7df7a0a

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

tests/ui/cfg_attr_lint.rs

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,31 @@
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)]
930
fn main() {
1031
foo::f();

0 commit comments

Comments
 (0)