summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/brace_style/item_prefer_same_line.rs
blob: 4412bc869a268bb230eafec8a83637f5d28bf32b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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() {}
}