rust/tests/target/indented-impl.rs
2017-07-21 13:55:34 +09:00

12 lines
167 B
Rust

// rustfmt-item_brace_style: AlwaysNextLine
mod x
{
struct X(i8);
impl Y for X
{
fn y(self) -> () {
println!("ok");
}
}
}