summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-ascription-with-fn-call.fixed
blob: 6d96c4303c357f707e7883a9a028d95b25ed7be1 (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() {}