rust/tests/source/skip.rs

19 lines
258 B
Rust
Raw Normal View History

2016-09-10 06:08:32 +02:00
// 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
}
}