summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/brace_style/item_same_line_where.rs
blob: b8e69147dc5a8159600c1ae6c3304a9d8086483c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// rustfmt-brace_style: SameLineWhere
// Item brace style

struct Lorem {
    ipsum: bool,
}

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

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