nvim-treesitter/tests/indent/rust/where.rs
2021-04-23 21:21:38 +02:00

21 lines
177 B
Rust

fn foo<T>(t: T) -> i32
where
T: Debug,
{
1
}
fn foo<T>(t: T) -> i32 where
T: Debug,
{
1
}
struct Foo<T>(T);
impl<T> Write for Foo<T>
where
T: Debug,
{
}