]> git.lizzy.rs Git - rust.git/blob - tests/source/configs-item_brace_style-prefer_same_line.rs
Update tests
[rust.git] / tests / source / configs-item_brace_style-prefer_same_line.rs
1 // rustfmt-item_brace_style: PreferSameLine
2 // Item brace style
3
4 struct Lorem {
5     ipsum: bool,
6 }
7
8 struct Dolor<T> where T: Eq {
9     sit: T,
10 }
11
12 #[cfg(test)]
13 mod tests {
14     #[test]
15     fn it_works() {}
16 }