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

19 lines
205 B
Rust

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