mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 17:48:10 +00:00
13 lines
131 B
Rust
13 lines
131 B
Rust
|
// Test the skip attribute works
|
||
|
|
||
|
#[rustfmt_skip]
|
||
|
fn foo() { badly; formatted; stuff
|
||
|
; }
|
||
|
|
||
|
#[rustfmt_skip]
|
||
|
trait Foo
|
||
|
{
|
||
|
fn foo(
|
||
|
);
|
||
|
}
|