1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-12 02:23:39 +08:00
SpaceVim/bundle/nvim-treesitter-0.9.1/tests/indent/rust/where.rs

22 lines
177 B
Rust
Raw Normal View History

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,
{
}