rust/tests/source/space-not-before-bound-colon.rs

6 lines
126 B
Rust
Raw Normal View History

2016-09-17 01:44:51 +02:00
// rustfmt-space_before_bound: true
// rustfmt-space_after_bound_colon: false
trait Trait {}
fn f<'a, 'b: 'a, T: Trait>() {}