summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issues/issue-107280.stderr
blob: c5fd5c5bf0a033ff15834d2ed1f1df7092c97891 (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 previous error

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