kakoune/test/indent/rust/on-open-paren/in
2020-06-02 00:26:47 +08:00

36 lines
480 B
Plaintext

fn foo<T>(x: T)
where
T: Debug
%( )
fn foo<T>(x: T) where T: Debug %( )
impl<T> X for T
where
T: Debug
%( )
impl<T> X for T where T: Debug %( )
struct X<T>
where
T: Debug
%( )
struct X<T> where T: Debug %( )
enum X<T>
where
T: Debug
%( )
enum X<T> where T: Debug %( )
union X<T>
where
T: Debug
%( )
union X<T> where T: Debug %( )