-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6fa358
commit fe5581d
Showing
7 changed files
with
125 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
tests/ui/imports/suggest-import-ice-issue-127302.edition2015.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
error[E0583]: file not found for module `config` | ||
--> $DIR/suggest-import-ice-issue-127302.rs:3:1 | ||
| | ||
LL | mod config; | ||
| ^^^^^^^^^^^ | ||
| | ||
= help: to create the module `config`, create file "$DIR/config.rs" or "$DIR/config/mod.rs" | ||
= note: if there is a `mod config` elsewhere in the crate already, import it with `use crate::...` instead | ||
|
||
error: format argument must be a string literal | ||
--> $DIR/suggest-import-ice-issue-127302.rs:10:14 | ||
| | ||
LL | println!(args.ctx.compiler.display()); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: you might be missing a string literal to format with | ||
| | ||
LL | println!("{}", args.ctx.compiler.display()); | ||
| +++++ | ||
|
||
error[E0425]: cannot find value `args` in this scope | ||
--> $DIR/suggest-import-ice-issue-127302.rs:6:12 | ||
| | ||
LL | match &args.cmd { | ||
| ^^^^ not found in this scope | ||
| | ||
help: consider importing this function | ||
| | ||
LL + use std::env::args; | ||
| | ||
|
||
error[E0532]: expected unit struct, unit variant or constant, found module `crate::config` | ||
--> $DIR/suggest-import-ice-issue-127302.rs:7:9 | ||
| | ||
LL | crate::config => {} | ||
| ^^^^^^^^^^^^^ not a unit struct, unit variant or constant | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
Some errors have detailed explanations: E0425, E0532, E0583. | ||
For more information about an error, try `rustc --explain E0425`. |
41 changes: 41 additions & 0 deletions
41
tests/ui/imports/suggest-import-ice-issue-127302.edition2021.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
error[E0583]: file not found for module `config` | ||
--> $DIR/suggest-import-ice-issue-127302.rs:3:1 | ||
| | ||
LL | mod config; | ||
| ^^^^^^^^^^^ | ||
| | ||
= help: to create the module `config`, create file "$DIR/config.rs" or "$DIR/config/mod.rs" | ||
= note: if there is a `mod config` elsewhere in the crate already, import it with `use crate::...` instead | ||
|
||
error: format argument must be a string literal | ||
--> $DIR/suggest-import-ice-issue-127302.rs:10:14 | ||
| | ||
LL | println!(args.ctx.compiler.display()); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: you might be missing a string literal to format with | ||
| | ||
LL | println!("{}", args.ctx.compiler.display()); | ||
| +++++ | ||
|
||
error[E0425]: cannot find value `args` in this scope | ||
--> $DIR/suggest-import-ice-issue-127302.rs:6:12 | ||
| | ||
LL | match &args.cmd { | ||
| ^^^^ not found in this scope | ||
| | ||
help: consider importing this function | ||
| | ||
LL + use std::env::args; | ||
| | ||
|
||
error[E0532]: expected unit struct, unit variant or constant, found module `crate::config` | ||
--> $DIR/suggest-import-ice-issue-127302.rs:7:9 | ||
| | ||
LL | crate::config => {} | ||
| ^^^^^^^^^^^^^ not a unit struct, unit variant or constant | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
Some errors have detailed explanations: E0425, E0532, E0583. | ||
For more information about an error, try `rustc --explain E0425`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
//@ revisions: edition2015 edition2021 | ||
|
||
mod config; //~ ERROR file not found for module | ||
|
||
fn main() { | ||
match &args.cmd { //~ ERROR cannot find value `args` in this scope | ||
crate::config => {} //~ ERROR expected unit struct, unit variant or constant, found module `crate::config` | ||
} | ||
|
||
println!(args.ctx.compiler.display()); | ||
//~^ ERROR format argument must be a string literal | ||
} |
2 changes: 1 addition & 1 deletion
2
...mports/suggest-import-issue-120074.stderr → ...st-import-issue-120074.edition2015.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
tests/ui/imports/suggest-import-issue-120074.edition2021.stderr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
error[E0433]: failed to resolve: unresolved import | ||
--> $DIR/suggest-import-issue-120074.rs:12:35 | ||
| | ||
LL | println!("Hello, {}!", crate::bar::do_the_thing); | ||
| ^^^ unresolved import | ||
| | ||
help: a similar path exists | ||
| | ||
LL | println!("Hello, {}!", crate::foo::bar::do_the_thing); | ||
| ~~~~~~~~ | ||
help: consider importing this module | ||
| | ||
LL + use foo::bar; | ||
| | ||
help: if you import `bar`, refer to it directly | ||
| | ||
LL - println!("Hello, {}!", crate::bar::do_the_thing); | ||
LL + println!("Hello, {}!", bar::do_the_thing); | ||
| | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0433`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
//@ revisions: edition2015 edition2021 | ||
|
||
pub mod foo { | ||
pub mod bar { | ||
pub fn do_the_thing() -> usize { | ||
|