]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/indented-impl.rs
Auto merge of #83342 - Count-Count:win-console-incomplete-utf8, r=m-ou-se
[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 }