Before: ``` rust struct S<T> /* comment */ { t: T, } ``` After: ``` rust struct S<T> { t: T, } ```