]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/removed-syntax-static-fn.stderr
Rollup merge of #69351 - mati865:mingw-ultimate-fix, r=cramertj
[rust.git] / src / test / ui / parser / removed-syntax-static-fn.stderr
1 error: expected identifier, found keyword `fn`
2   --> $DIR/removed-syntax-static-fn.rs:4:12
3    |
4 LL |     static fn f() {}
5    |            ^^ expected identifier, found keyword
6
7 error: expected one of `:`, `;`, or `=`, found `f`
8   --> $DIR/removed-syntax-static-fn.rs:4:15
9    |
10 LL |     static fn f() {}
11    |               ^ expected one of `:`, `;`, or `=`
12
13 error: missing type for `static` item
14   --> $DIR/removed-syntax-static-fn.rs:4:12
15    |
16 LL |     static fn f() {}
17    |            ^^ help: provide a type for the item: `r#fn: <type>`
18
19 error: aborting due to 3 previous errors
20