summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/statements.rs
blob: c1e7dc464c2a0e8857244f1bb055d8c45dddd5c0 (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
42
// FIXME(calebcartwright) - Hopefully one day we can
// elide these redundant semis like we do in other contexts.
fn redundant_item_semis() {
    impl Foo {
        fn get(&self) -> usize {
            5
        }
    };

    impl Bar {
        fn get(&self) -> usize {
            5
        }
    } /*asdfsf*/
    ;

    impl Baz {
        fn get(&self) -> usize {
            5
        }
    } /*asdfsf*/

    // why would someone do this
    ;

    impl Qux {
        fn get(&self) -> usize {
            5
        }
    }

    // why
    ;

    impl Lorem {
        fn get(&self) -> usize {
            5
        }
    }
    // oh why
    ;
}