summaryrefslogtreecommitdiffstats
path: root/tests/ui/typeck/issue-90027-async-fn-return-suggestion.stderr
blob: 0d72ae118f3aa2d6f05d8f58bd562c95a609d358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
error[E0308]: mismatched types
  --> $DIR/issue-90027-async-fn-return-suggestion.rs:4:5
   |
LL | async fn hello() {
   |                  - help: try adding a return type: `-> i32`
LL |     0
   |     ^ expected `()`, found integer

error[E0308]: mismatched types
  --> $DIR/issue-90027-async-fn-return-suggestion.rs:9:5
   |
LL | async fn world() -> () {
   |                     -- expected `()` because of return type
LL |     0
   |     ^ expected `()`, found integer

error[E0308]: mismatched types
  --> $DIR/issue-90027-async-fn-return-suggestion.rs:14:5
   |
LL |     hello()
   |     ^^^^^^^ expected `()`, found future
   |
note: calling an async function returns a future
  --> $DIR/issue-90027-async-fn-return-suggestion.rs:14:5
   |
LL |     hello()
   |     ^^^^^^^
help: consider `await`ing on the `Future`
   |
LL |     hello().await
   |            ++++++
help: consider using a semicolon here
   |
LL |     hello();
   |            +

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0308`.