mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
a5b639dc01
Consider `tests/ui/const-generics/generic_const_exprs/issue-102768.stderr`, the error message where it gives additional notes about where the associated type is defined, and how the dead code lint doesn't have an article, like in `tests/ui/lint/dead-code/issue-85255.stderr`. They don't have articles, so it seems unnecessary to have one here.
34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
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(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]: 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`.
|