20 lines
204 B
Rust
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() {}
|
|
}
|