2017-11-13 19:47:02 -06:00
|
|
|
// rustfmt-brace_style: AlwaysNextLine
|
2015-11-17 01:18:07 -06:00
|
|
|
|
2017-07-20 23:55:34 -05:00
|
|
|
mod M
|
|
|
|
{
|
2015-11-17 01:18:07 -06:00
|
|
|
enum A
|
|
|
|
{
|
|
|
|
A,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct B
|
|
|
|
{
|
|
|
|
b: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// For empty enums and structs, the brace remains on the same line.
|
|
|
|
enum C {}
|
|
|
|
|
|
|
|
struct D {}
|
|
|
|
|
|
|
|
enum A<T>
|
2017-06-11 23:01:41 -05:00
|
|
|
where
|
|
|
|
T: Copy,
|
2015-11-17 01:18:07 -06:00
|
|
|
{
|
|
|
|
A,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct B<T>
|
2017-06-11 23:01:41 -05:00
|
|
|
where
|
|
|
|
T: Copy,
|
2015-11-17 01:18:07 -06:00
|
|
|
{
|
|
|
|
b: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// For empty enums and structs, the brace remains on the same line.
|
|
|
|
enum C<T>
|
2017-06-11 23:01:41 -05:00
|
|
|
where
|
|
|
|
T: Copy, {}
|
2015-11-17 01:18:07 -06:00
|
|
|
|
|
|
|
struct D<T>
|
2017-06-11 23:01:41 -05:00
|
|
|
where
|
|
|
|
T: Copy, {}
|
2015-11-17 01:18:07 -06:00
|
|
|
}
|