summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs
blob: c13018630be02d95281c9f7aa2c1cb10a1cd3df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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() {}
}