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

error: aborting due to previous error

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