2020-09-02 02:40:56 -05:00
|
|
|
error[E0599]: no method named `trait_method` found for struct `FooStruct` in the current scope
|
2020-06-27 13:08:32 -05:00
|
|
|
--> $DIR/issue-56175.rs:5:33
|
|
|
|
|
|
|
|
|
LL | reexported_trait::FooStruct.trait_method();
|
2020-09-02 02:40:56 -05:00
|
|
|
| ^^^^^^^^^^^^ method not found in `FooStruct`
|
2020-06-27 13:08:32 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is in scope
|
|
|
|
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
|
|
|
|
|
2020-06-29 13:51:32 -05:00
|
|
|
LL | use reexported_trait::Trait;
|
2020-06-27 13:08:32 -05:00
|
|
|
|
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0599]: no method named `trait_method_b` found for struct `FooStruct` in the current scope
|
2020-06-27 13:08:32 -05:00
|
|
|
--> $DIR/issue-56175.rs:7:33
|
|
|
|
|
|
|
|
|
LL | reexported_trait::FooStruct.trait_method_b();
|
2020-09-02 02:40:56 -05:00
|
|
|
| ^^^^^^^^^^^^^^ method not found in `FooStruct`
|
2020-06-27 13:08:32 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is in scope
|
|
|
|
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
|
|
|
|
|
2020-06-29 13:51:32 -05:00
|
|
|
LL | use reexported_trait::TraitBRename;
|
2020-06-27 13:08:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|