rust/tests/ui/late-bound-lifetimes/mismatched_arg_count.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
658 B
Plaintext
Raw Normal View History

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;
| ^^^^^ --
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`.