mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
31 lines
429 B
Rust
31 lines
429 B
Rust
// run-rustfix
|
|
#![feature(stmt_expr_attributes)]
|
|
|
|
#![allow(unused, clippy::no_effect)]
|
|
#![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() {
|
|
#[rustfmt::skip]
|
|
5+3;
|
|
}
|
|
|
|
#[rustfmt::skip]
|
|
fn main() {
|
|
foo::f();
|
|
}
|
|
|
|
mod foo {
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
pub fn f() {}
|
|
}
|