summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-82126-mismatched-subst-and-hir.stderr
blob: d2b927fb664c66b1958dbdfd914b771b95b1d2d1 (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
error[E0107]: this struct takes 0 lifetime arguments but 1 lifetime argument was supplied
  --> $DIR/issue-82126-mismatched-subst-and-hir.rs:16:59
   |
LL | async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_> {
   |                                                           ^^^^^^^^^^^^---- help: remove these generics
   |                                                           |
   |                                                           expected 0 lifetime arguments
   |
note: struct defined here, with 0 lifetime parameters
  --> $DIR/issue-82126-mismatched-subst-and-hir.rs:22:8
   |
LL | struct LockedMarket<T>(T);
   |        ^^^^^^^^^^^^

error[E0107]: this struct takes 1 generic argument but 0 generic arguments were supplied
  --> $DIR/issue-82126-mismatched-subst-and-hir.rs:16:59
   |
LL | async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_> {
   |                                                           ^^^^^^^^^^^^ expected 1 generic argument
   |
note: struct defined here, with 1 generic parameter: `T`
  --> $DIR/issue-82126-mismatched-subst-and-hir.rs:22:8
   |
LL | struct LockedMarket<T>(T);
   |        ^^^^^^^^^^^^ -
help: add missing generic argument
   |
LL | async fn buy_lock(generator: &Mutex<MarketMultiplier>) -> LockedMarket<'_, T> {
   |                                                                          +++

error: aborting due to 2 previous errors

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