File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ pub mod baz {
2727struct Foo ;
2828impl T for Foo { }
2929//~^ ERROR trait `T` is not in scope
30- //~| HELP you can to import it into scope: `use foo::bar::T;`.
30+ //~| HELP you can import it into scope: `use foo::bar::T;`.
3131//~| HELP run `rustc --explain E0405` to see a detailed explanation
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ struct Foo;
2424// are hidden from the view.
2525impl OuterTrait for Foo { }
2626//~^ ERROR trait `OuterTrait` is not in scope
27- //~| HELP you can to import it into scope: `use issue_21221_3::outer::OuterTrait;`.
27+ //~| HELP you can import it into scope: `use issue_21221_3::outer::OuterTrait;`.
2828//~| HELP run `rustc --explain E0405` to see a detailed explanation
2929fn main ( ) {
3030 println ! ( "Hello, world!" ) ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ struct Foo;
1919
2020impl T for Foo { }
2121//~^ ERROR trait `T` is not in scope
22- //~| HELP you can to import it into scope: `use issue_21221_4::T;`.
22+ //~| HELP you can import it into scope: `use issue_21221_4::T;`.
2323//~| HELP run `rustc --explain E0405` to see a detailed explanation
2424
2525fn main ( ) {
You can’t perform that action at this time.
0 commit comments