2023-02-23 17:27:06 +00:00
|
|
|
error[E0107]: type alias takes 1 lifetime argument but 2 lifetime arguments were supplied
|
2022-11-06 13:39:13 +00:00
|
|
|
--> $DIR/mismatched_arg_count.rs:9:29
|
|
|
|
|
|
|
|
|
LL | fn bar<'a, T: Trait<'a>>(_: Alias<'a, 'a, T>) {}
|
2024-07-22 22:51:53 +00:00
|
|
|
| ^^^^^ ---- help: remove the lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
2022-11-06 13:39:13 +00:00
|
|
|
|
|
|
|
|
note: type alias defined here, with 1 lifetime parameter: `'a`
|
|
|
|
--> $DIR/mismatched_arg_count.rs:7:6
|
|
|
|
|
|
|
|
|
LL | type Alias<'a, T> = <T as Trait<'a>>::Assoc;
|
|
|
|
| ^^^^^ --
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-11-06 13:39:13 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|