]> git.proxmox.com Git - rustc.git/blame - src/tools/rustfmt/tests/target/configs/brace_style/item_always_next_line.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / rustfmt / tests / target / configs / brace_style / item_always_next_line.rs
CommitLineData
f20569fa
XL
1// rustfmt-brace_style: AlwaysNextLine
2// Item brace style
3
4enum Foo {}
5
6struct Bar {}
7
8struct Lorem
9{
10 ipsum: bool,
11}
12
13struct Dolor<T>
14where
15 T: Eq,
16{
17 sit: T,
18}
19
20#[cfg(test)]
21mod tests
22{
23 #[test]
24 fn it_works() {}
25}