]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/indented-impl.rs
Merge commit '48d60ab7c505c6c1ebb042eacaafd8dc9f7a9267' into libgccjit-codegen
[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 }