2023-02-28 18:13:21 +00:00
|
|
|
error[E0107]: type alias takes 1 lifetime argument but 2 lifetime arguments were supplied
|
2023-03-01 09:43:41 +00:00
|
|
|
--> $DIR/mismatched_arg_count.rs:7:29
|
2023-02-28 18:13:21 +00:00
|
|
|
|
|
|
|
|
LL | fn bar<'a, T: Trait<'a>>(_: Alias<'a, 'a, T>) {}
|
|
|
|
| ^^^^^ -- help: remove this lifetime argument
|
|
|
|
| |
|
|
|
|
| expected 1 lifetime argument
|
|
|
|
|
|
|
|
|
note: type alias defined here, with 1 lifetime parameter: `'a`
|
2023-03-01 09:43:41 +00:00
|
|
|
--> $DIR/mismatched_arg_count.rs:5:6
|
2023-02-28 18:13:21 +00:00
|
|
|
|
|
|
|
|
LL | type Alias<'a, T> = <T as Trait<'a>>::Assoc;
|
|
|
|
| ^^^^^ --
|
|
|
|
|
2023-11-21 16:44:51 +00:00
|
|
|
error: aborting due to 1 previous error
|
2023-02-28 18:13:21 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|