rust/tests/target/indented-impl.rs
2017-11-14 10:47:02 +09:00

13 lines
170 B
Rust

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