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