rust/tests/ui/issues/issue-45801.stderr

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

14 lines
525 B
Plaintext
Raw Permalink Normal View History

2018-07-15 21:11:54 +00:00
error[E0277]: the trait bound `Params: Plugin<i32>` is not satisfied
2018-12-25 15:56:47 +00:00
--> $DIR/issue-45801.rs:21:9
2018-07-15 21:11:54 +00:00
|
LL | req.get_ref::<Params>();
| ^^^^^^^ the trait `Plugin<i32>` is not implemented for `Params`
|
= help: the trait `Plugin<i32>` is not implemented for `Params`
but trait `Plugin<Foo>` is implemented for it
2023-09-10 03:33:07 +00:00
= help: for that trait implementation, expected `Foo`, found `i32`
2018-07-15 21:11:54 +00:00
error: aborting due to 1 previous error
2018-07-15 21:11:54 +00:00
For more information about this error, try `rustc --explain E0277`.