rust/tests/target/skip.rs

74 lines
1.2 KiB
Rust
Raw Normal View History

2015-04-23 06:25:48 +02:00
// Test the skip attribute works
#[rustfmt_skip]
fn foo() { badly; formatted; stuff
; }
#[rustfmt_skip]
trait Foo
{
fn foo(
);
}
2016-09-10 06:08:32 +02:00
impl LateLintPass for UsedUnderscoreBinding {
#[cfg_attr(rustfmt, rustfmt_skip)]
fn check_expr() { // comment
}
}
2017-05-28 04:41:16 +02:00
fn issue1346() {
#[cfg_attr(rustfmt, rustfmt_skip)]
Box::new(self.inner.call(req).then(move |result| {
match result {
Ok(resp) => Box::new(future::done(Ok(resp))),
Err(e) => {
try_error!(clo_stderr, "{}", e);
Box::new(future::err(e))
}
}
}))
}
2017-07-22 04:18:59 +02:00
fn skip_on_statements() {
// Semi
#[cfg_attr(rustfmt, rustfmt_skip)]
foo(
1, 2, 3, 4,
1, 2,
1, 2, 3,
);
// Local
#[cfg_attr(rustfmt, rustfmt_skip)]
let x = foo( a, b , c);
// Item
#[cfg_attr(rustfmt, rustfmt_skip)]
use foobar ;
// Mac
#[cfg_attr(rustfmt, rustfmt_skip)]
vec![
1, 2, 3, 4,
1, 2, 3, 4,
1, 2, 3, 4,
1, 2, 3,
1,
1, 2,
1,
];
// Expr
#[cfg_attr(rustfmt, rustfmt_skip)]
foo( a, b , c)
}
// Check that the skip attribute applies to other attributes.
#[rustfmt_skip]
#[cfg
( a , b
)]
fn
main() {}