rust/tests/target/skip.rs
2016-09-10 13:08:32 +09:00

18 lines
258 B
Rust

// Test the skip attribute works
#[rustfmt_skip]
fn foo() { badly; formatted; stuff
; }
#[rustfmt_skip]
trait Foo
{
fn foo(
);
}
impl LateLintPass for UsedUnderscoreBinding {
#[cfg_attr(rustfmt, rustfmt_skip)]
fn check_expr() { // comment
}
}