2015-11-19 00:34:14 -06:00
|
|
|
// rustfmt-item_brace_style: SameLineWhere
|
2015-11-17 01:18:07 -06:00
|
|
|
|
|
|
|
mod M {
|
2015-11-19 00:34:14 -06:00
|
|
|
enum A {
|
2015-11-17 01:18:07 -06:00
|
|
|
A,
|
|
|
|
}
|
|
|
|
|
2015-11-19 00:34:14 -06:00
|
|
|
struct B {
|
2015-11-17 01:18:07 -06:00
|
|
|
b: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// For empty enums and structs, the brace remains on the same line.
|
|
|
|
enum C {}
|
|
|
|
|
|
|
|
struct D {}
|
|
|
|
|
|
|
|
enum A<T>
|
|
|
|
where T: Copy
|
|
|
|
{
|
|
|
|
A,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct B<T>
|
|
|
|
where T: Copy
|
|
|
|
{
|
|
|
|
b: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// For empty enums and structs, the brace remains on the same line.
|
|
|
|
enum C<T>
|
2015-11-19 00:34:14 -06:00
|
|
|
where T: Copy {}
|
2015-11-17 01:18:07 -06:00
|
|
|
|
|
|
|
struct D<T>
|
2015-11-19 00:34:14 -06:00
|
|
|
where T: Copy {}
|
2015-11-17 01:18:07 -06:00
|
|
|
}
|