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