summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/brace_style/item_always_next_line.rs
blob: 0cc19b34da7ef8dc726d95f7dcb50e204ca3a052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// rustfmt-brace_style: AlwaysNextLine
// Item brace style

enum Foo {}

struct Bar {}

struct Lorem {
    ipsum: bool,
}

struct Dolor<T> where T: Eq {
    sit: T,
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {}
}