summaryrefslogtreecommitdiffstats
path: root/tests/ui/mismatched_types/dont-point-return-on-E0308.stderr
blob: 7be94ef4ad66386138abcea42c766088c97fff1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0308]: mismatched types
  --> $DIR/dont-point-return-on-E0308.rs:11:11
   |
LL |         f(());
   |         - ^^ expected `&()`, found `()`
   |         |
   |         arguments to this function are incorrect
   |
note: function defined here
  --> $DIR/dont-point-return-on-E0308.rs:3:10
   |
LL | async fn f(_: &()) {}
   |          ^ ------
help: consider borrowing here
   |
LL |         f(&());
   |           +

error: aborting due to previous error

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