]> git.lizzy.rs Git - rust.git/blob - tests/target/skip.rs
Merge pull request #681 from rust-lang-nursery/comment-style
[rust.git] / tests / target / skip.rs
1 // Test the skip attribute works
2
3 #[rustfmt_skip]
4 fn foo() { badly; formatted; stuff
5 ; }
6
7 #[rustfmt_skip]
8 trait Foo
9 {
10 fn foo(
11 );
12 }