summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/brace_style/item_prefer_same_line.rs
blob: 5143d7517c75ee0048120cbb0b0e5b32fcdb034b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// rustfmt-brace_style: PreferSameLine
// Item brace style

struct Lorem {
    ipsum: bool,
}

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

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