rust/tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr

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

20 lines
530 B
Plaintext
Raw Normal View History

error[E0405]: cannot find trait `Trait` in `A`
--> $DIR/shadowed-path-in-trait-bound-suggestion.rs:9:24
|
LL | pub struct A<H: A::Trait>(pub H);
| ^^^^^ not found in `A`
|
2022-05-03 02:07:47 +00:00
help: consider importing this trait
|
2023-03-18 02:18:39 +00:00
LL + use A::Trait;
|
2022-05-03 02:07:47 +00:00
help: if you import `Trait`, refer to it directly
|
LL - pub struct A<H: A::Trait>(pub H);
LL + pub struct A<H: Trait>(pub H);
2022-06-08 20:34:57 +03:00
|
error: aborting due to previous error
For more information about this error, try `rustc --explain E0405`.