summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/type_punctuation_density/compressed.rs
blob: 6571e448e446a8d2667153fd8a7e46eaa21a9d85 (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: Compressed
// 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;
}