summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-ascription-with-fn-call.rs
blob: ed4f7c9041c3a7e1ce2e865f887c737297220214 (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix
#![feature(type_ascription)]

fn main() {
    f()  :
    f(); //~ ERROR expected type, found function
}

fn f() {}