aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/rust/where.rs
blob: 08c1b196d9671c4d9560012d07ec8e10240ec440 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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,
{

}