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

20 lines
204 B
Rust

// 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() {}
}