]> git.lizzy.rs Git - rust.git/blob - tests/target/indented-impl.rs
Merge pull request #3500 from rchaser53/issue-3499
[rust.git] / 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 }