summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issues/issue-107280.stderr
blob: d1d80ce038cebe93a3e4e6dba14b97232b1d817f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0107]: function takes 2 generic arguments but 1 generic argument was supplied
  --> $DIR/issue-107280.rs:4:5
   |
LL |     inner::<false>().await
   |     ^^^^^   ----- supplied 1 generic argument
   |     |
   |     expected 2 generic arguments
   |
note: function defined here, with 2 generic parameters: `T`, `PING`
  --> $DIR/issue-107280.rs:8:10
   |
LL | async fn inner<T, const PING: bool>() {}
   |          ^^^^^ -  ----------------
help: add missing generic argument
   |
LL |     inner::<false, PING>().await
   |                  ++++++

error: aborting due to 1 previous error

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