mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
21 lines
177 B
Rust
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,
|
|
{
|
|
|
|
}
|