2023-02-23 11:27:06 -06:00
|
|
|
error[E0107]: struct takes 0 lifetime arguments but 1 lifetime argument was supplied
|
2021-02-14 22:59:45 -06:00
|
|
|
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:16:59
|
|
|
|
|
|
2023-10-19 16:46:28 -05:00
|
|
|
LL | async fn buy_lock(coroutine: &Mutex<MarketMultiplier>) -> LockedMarket<'_> {
|
2021-02-14 22:59:45 -06:00
|
|
|
| ^^^^^^^^^^^^---- help: remove these generics
|
|
|
|
| |
|
|
|
|
| expected 0 lifetime arguments
|
|
|
|
|
|
|
|
|
note: struct defined here, with 0 lifetime parameters
|
2024-03-20 11:52:54 -05:00
|
|
|
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:24:8
|
2021-02-14 22:59:45 -06:00
|
|
|
|
|
|
|
|
LL | struct LockedMarket<T>(T);
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2023-02-23 11:27:06 -06:00
|
|
|
error[E0107]: struct takes 1 generic argument but 0 generic arguments were supplied
|
2021-02-14 22:59:45 -06:00
|
|
|
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:16:59
|
|
|
|
|
|
2023-10-19 16:46:28 -05:00
|
|
|
LL | async fn buy_lock(coroutine: &Mutex<MarketMultiplier>) -> LockedMarket<'_> {
|
2021-02-18 14:01:44 -06:00
|
|
|
| ^^^^^^^^^^^^ expected 1 generic argument
|
2021-02-14 22:59:45 -06:00
|
|
|
|
|
2021-02-18 14:01:44 -06:00
|
|
|
note: struct defined here, with 1 generic parameter: `T`
|
2024-03-20 11:52:54 -05:00
|
|
|
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:24:8
|
2021-02-14 22:59:45 -06:00
|
|
|
|
|
|
|
|
LL | struct LockedMarket<T>(T);
|
|
|
|
| ^^^^^^^^^^^^ -
|
2021-02-18 14:01:44 -06:00
|
|
|
help: add missing generic argument
|
2021-02-14 22:59:45 -06:00
|
|
|
|
|
2023-10-19 16:46:28 -05:00
|
|
|
LL | async fn buy_lock(coroutine: &Mutex<MarketMultiplier>) -> LockedMarket<'_, T> {
|
2021-06-21 21:07:19 -05:00
|
|
|
| +++
|
2021-02-14 22:59:45 -06:00
|
|
|
|
2024-03-20 11:52:54 -05:00
|
|
|
error[E0107]: 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(coroutine: &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:24:8
|
|
|
|
|
|
|
|
|
LL | struct LockedMarket<T>(T);
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
|
|
|
|
error[E0107]: 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(coroutine: &Mutex<MarketMultiplier>) -> LockedMarket<'_> {
|
|
|
|
| ^^^^^^^^^^^^ expected 1 generic argument
|
|
|
|
|
|
|
|
|
note: struct defined here, with 1 generic parameter: `T`
|
|
|
|
--> $DIR/issue-82126-mismatched-subst-and-hir.rs:24:8
|
|
|
|
|
|
|
|
|
LL | struct LockedMarket<T>(T);
|
|
|
|
| ^^^^^^^^^^^^ -
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
help: add missing generic argument
|
|
|
|
|
|
|
|
|
LL | async fn buy_lock(coroutine: &Mutex<MarketMultiplier>) -> LockedMarket<'_, T> {
|
|
|
|
| +++
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2021-02-14 22:59:45 -06:00
|
|
|
|
2024-01-10 10:34:54 -06:00
|
|
|
For more information about this error, try `rustc --explain E0107`.
|