4b999a99c0
* An option to leave a space before the colon in a type annotation * An option to leave a space before the colon in a trait or lifetime bound
5 lines
86 B
Rust
5 lines
86 B
Rust
// rustfmt-space_before_bound: true
|
|
|
|
trait Trait {}
|
|
fn f<'a, 'b : 'a, T : Trait>() {}
|