2015-04-23 16:25:48 +12:00
|
|
|
// Test the skip attribute works
|
|
|
|
|
|
|
|
#[rustfmt_skip]
|
|
|
|
fn foo() { badly; formatted; stuff
|
|
|
|
; }
|
|
|
|
|
|
|
|
#[rustfmt_skip]
|
|
|
|
trait Foo
|
|
|
|
{
|
|
|
|
fn foo(
|
|
|
|
);
|
|
|
|
}
|
2016-09-10 13:08:32 +09:00
|
|
|
|
|
|
|
impl LateLintPass for UsedUnderscoreBinding {
|
|
|
|
#[cfg_attr(rustfmt, rustfmt_skip)]
|
|
|
|
fn check_expr() { // comment
|
|
|
|
}
|
|
|
|
}
|