2017-11-14 10:47:02 +09:00
|
|
|
// rustfmt-brace_style: AlwaysNextLine
|
2017-04-30 23:49:39 +02:00
|
|
|
// Item brace style
|
|
|
|
|
2017-08-29 14:29:13 +09:00
|
|
|
enum Foo {}
|
|
|
|
|
|
|
|
struct Bar {}
|
|
|
|
|
2017-04-30 23:49:39 +02:00
|
|
|
struct Lorem {
|
|
|
|
ipsum: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Dolor<T> where T: Eq {
|
|
|
|
sit: T,
|
|
|
|
}
|
2017-07-21 13:55:34 +09:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
#[test]
|
|
|
|
fn it_works() {}
|
|
|
|
}
|