File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ pub mod baz {
27
27
struct Foo ;
28
28
impl T for Foo { }
29
29
//~^ 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;`.
31
31
//~| 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;
24
24
// are hidden from the view.
25
25
impl OuterTrait for Foo { }
26
26
//~^ 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;`.
28
28
//~| HELP run `rustc --explain E0405` to see a detailed explanation
29
29
fn main ( ) {
30
30
println ! ( "Hello, world!" ) ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ struct Foo;
19
19
20
20
impl T for Foo { }
21
21
//~^ 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;`.
23
23
//~| HELP run `rustc --explain E0405` to see a detailed explanation
24
24
25
25
fn main ( ) {
You can’t perform that action at this time.
0 commit comments