rust/tests/ui/cfg_attr_rustfmt.rs

44 lines
673 B
Rust
Raw Normal View History

2023-07-27 06:40:22 -05:00
#![feature(stmt_expr_attributes)]
2018-09-03 08:34:33 -05:00
#![allow(unused, clippy::no_effect, clippy::unnecessary_operation)]
2018-09-03 08:34:33 -05:00
#![warn(clippy::deprecated_cfg_attr)]
// This doesn't get linted, see known problems
#![cfg_attr(rustfmt, rustfmt_skip)]
2018-11-01 14:06:25 -05:00
#[rustfmt::skip]
trait Foo
{
fn foo(
);
}
fn skip_on_statements() {
#[cfg_attr(rustfmt, rustfmt::skip)]
5+3;
}
2018-09-03 08:34:33 -05:00
#[cfg_attr(rustfmt, rustfmt_skip)]
fn main() {
foo::f();
}
mod foo {
#![cfg_attr(rustfmt, rustfmt_skip)]
pub fn f() {}
}
#[clippy::msrv = "1.29"]
fn msrv_1_29() {
#[cfg_attr(rustfmt, rustfmt::skip)]
1+29;
}
#[clippy::msrv = "1.30"]
fn msrv_1_30() {
#[cfg_attr(rustfmt, rustfmt::skip)]
1+30;
}