about summary refs log tree commit diff
path: root/tests/ui/type/type-ascription-with-fn-call.fixed
blob: 2b85427f91e3b4a81795c01dd3960df820a7fe85 (plain)
1
2
3
4
5
6
7
//@ run-rustfix
fn main() {
    f()  ; //~ ERROR statements are terminated with a semicolon
    f();
}

fn f() {}