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

fn f() {}