]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/indented-impl.rs
Merge commit 'efa8f5521d3813cc897ba29ea0ef98c7aef66bb6' into rustfmt-subtree
[rust.git] / src / tools / rustfmt / tests / target / indented-impl.rs
1 // rustfmt-brace_style: AlwaysNextLine
2 mod x
3 {
4     struct X(i8);
5
6     impl Y for X
7     {
8         fn y(self) -> ()
9         {
10             println!("ok");
11         }
12     }
13 }