rust/tests/target/configs/brace_style/item_always_next_line.rs
2018-03-02 15:07:13 +13:00

28 lines
242 B
Rust

// rustfmt-brace_style: AlwaysNextLine
// Item brace style
enum Foo {}
struct Bar {}
struct Lorem
{
ipsum: bool,
}
struct Dolor<T>
where
T: Eq,
{
sit: T,
}
#[cfg(test)]
mod tests
{
#[test]
fn it_works()
{
}
}