summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/type_punctuation_density/wide.rs
blob: 01546c7b0a517307f9afd9cb28c7d27f2725110b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// rustfmt-type_punctuation_density: Wide
// Type punctuation density

fn lorem<Ipsum: Dolor + Sit = Amet>() {
    // body
}

struct Foo<T: Eq + Clone, U>
where
    U: Eq + Clone, {
    // body
}

trait Foo<'a, T = usize>
where
    T: 'a + Eq + Clone,
{
    type Bar: Eq + Clone;
}

trait Foo: Eq + Clone {
    // body
}

impl<T> Foo<'a> for Bar
where
    for<'a> T: 'a + Eq + Clone,
{
    // body
}

fn foo<'a, 'b, 'c>()
where
    'a: 'b + 'c,
{
    // body
}

fn Foo<T = Foo, Output = Expr<'tcx> + Foo>() {
    let i = 6;
}