summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/type-ascription-with-fn-call.fixed
blob: 847f33099732e61f7c0aa0679b60e544799fdd2e (plain)
1
2
3
4
5
6
7
// run-rustfix
fn main() {
    f()  ; //~ ERROR statements are terminated with a semicolon
    f();
}

fn f() {}