summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/missing-semicolon.fixed
blob: df355f0b007615e4d2ca76b1654fa23461157ae2 (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
// run-rustfix
#![allow(dead_code, unused_variables, path_statements)]
fn a() {
    let x = 5;
    let y = x; //~ ERROR expected function
    (); //~ ERROR expected `;`, found `}`
}

fn b() {
    let x = 5;
    let y = x; //~ ERROR expected function
    ();
}
fn c() {
    let x = 5;
    x; //~ ERROR expected function
    ()
}
fn d() { // ok
    let x = || ();
    x
    ()
}
fn e() { // ok
    let x = || ();
    x
    ();
}
fn f()
 {
    let y = 5; //~ ERROR expected function
    (); //~ ERROR expected `;`, found `}`
}
fn g() {
    5; //~ ERROR expected function
    ();
}
fn main() {}