2022-04-23 18:41:36 -05:00
|
|
|
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
|
2022-04-23 18:41:36 -05:00
|
|
|
|
|
2023-03-17 21:18:39 -05:00
|
|
|
LL + use A::Trait;
|
2022-04-23 18:41:36 -05:00
|
|
|
|
|
2022-05-02 21:07:47 -05:00
|
|
|
help: if you import `Trait`, refer to it directly
|
2022-04-23 18:41:36 -05:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-04-23 18:41:36 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-23 18:41:36 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0405`.
|