]> git.lizzy.rs Git - rust.git/blob - tests/target/empty-item-single-line-false.rs
Fix static async closure qualifier order
[rust.git] / tests / target / empty-item-single-line-false.rs
1 // rustfmt-brace_style: AlwaysNextLine
2 // rustfmt-empty_item_single_line: false
3
4 fn function()
5 {
6 }
7
8 struct Struct {}
9
10 enum Enum {}
11
12 trait Trait
13 {
14 }
15
16 impl<T> Trait for T
17 {
18 }
19
20 trait Trait2<T>
21 where
22     T: Copy + Display + Write + Read + FromStr,
23 {
24 }
25
26 trait Trait3<T>
27 where
28     T: Something
29         + SomethingElse
30         + Sync
31         + Send
32         + Display
33         + Debug
34         + Copy
35         + Hash
36         + Debug
37         + Display
38         + Write
39         + Read,
40 {
41 }