2015-04-22 23:25:48 -05:00
|
|
|
// Test the skip attribute works
|
|
|
|
|
|
|
|
#[rustfmt_skip]
|
|
|
|
fn foo() { badly; formatted; stuff
|
|
|
|
; }
|
|
|
|
|
|
|
|
#[rustfmt_skip]
|
|
|
|
trait Foo
|
|
|
|
{
|
|
|
|
fn foo(
|
|
|
|
);
|
|
|
|
}
|
2016-09-09 23:08:32 -05:00
|
|
|
|
|
|
|
impl LateLintPass for UsedUnderscoreBinding {
|
|
|
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
fn check_expr() { // comment
|
|
|
|
}
|
|
|
|
}
|
2017-05-27 21:41:16 -05: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))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
}
|