rust/tests/target/item-brace-style-prefer-same-line.rs

36 lines
371 B
Rust
Raw Normal View History

// rustfmt-brace_style: PreferSameLine
mod M {
enum A {
A,
}
struct B {
b: i32,
}
enum C {}
struct D {}
enum A<T>
2017-06-12 06:01:41 +02:00
where
T: Copy, {
A,
}
struct B<T>
2017-06-12 06:01:41 +02:00
where
T: Copy, {
b: i32,
}
enum C<T>
2017-06-12 06:01:41 +02:00
where
T: Copy, {}
struct D<T>
2017-06-12 06:01:41 +02:00
where
T: Copy, {}
}