summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-4646.rs
blob: ee0f23220c97bf68f10667fcc94d6ab491ffb9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
trait Foo {
    fn bar(&self)
    // where
    //     Self: Bar
    ;
}

trait Foo {
    fn bar(&self)
    // where
    //     Self: Bar
;
}

trait Foo {
    fn bar(&self)
    // where
    //     Self: Bar
        ;
}