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
532 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-02 21:07:47 -05:00
help: consider importing this trait
|
2023-03-17 21:18:39 -05:00
LL + use A::Trait;
|
2022-05-02 21:07:47 -05: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 12:34:57 -05:00
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0405`.