]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/indented-impl.rs
Merge commit 'e36a20c24f35a4cee82bbdc600289104c9237c22' into ra-sync-and-pms-component
[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 }