about summary refs log tree commit diff
path: root/tests/ui/type/type-ascription-with-fn-call.stderr
blob: 803c9f1c302ee65ee3a7078bdd3a9b4c0885ecaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: statements are terminated with a semicolon
  --> $DIR/type-ascription-with-fn-call.rs:3:10
   |
LL |     f()  :
   |          ^
   |
help: use a semicolon instead
   |
LL -     f()  :
LL +     f()  ;
   |

error: aborting due to 1 previous error