Skip to content

Commit 2302ae6

Browse files
committed
Add a couple more tests
Add error annotations to one test
1 parent bb5ffdc commit 2302ae6

9 files changed

+88
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
mod m1 {
2+
pub fn f() {}
3+
}
4+
mod m2 {
5+
pub fn f(_: u8) {}
6+
}
7+
8+
pub use m1::*;
9+
pub use m2::*;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// aux-build:glob-conflict.rs
2+
3+
extern crate glob_conflict;
4+
5+
fn main() {
6+
glob_conflict::f(); //~ ERROR cannot find function `f` in module `glob_conflict`
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
error[E0425]: cannot find function `f` in module `glob_conflict`
2+
--> $DIR/glob-conflict-cross-crate.rs:6:20
3+
|
4+
LL | glob_conflict::f(); //~ ERROR cannot find function `f` in module `glob_conflict`
5+
| ^ not found in `glob_conflict`
6+
7+
error: aborting due to previous error
8+
9+
For more information about this error, try `rustc --explain E0425`.

src/test/ui/rust-2018/local-path-suggestions-2018.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mod foo {
1919
}
2020

2121
mod bazz {
22-
use foo::Bar;
22+
use foo::Bar; //~ ERROR unresolved import `foo`
2323

2424
fn baz() {
2525
let x: Bar = 22;
@@ -28,6 +28,6 @@ mod bazz {
2828

2929
use foo::Bar;
3030

31-
use foobar::Baz;
31+
use foobar::Baz; //~ ERROR unresolved import `foobar`
3232

3333
fn main() { }

src/test/ui/rust-2018/local-path-suggestions-2018.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
error[E0432]: unresolved import `foo`
22
--> $DIR/local-path-suggestions-2018.rs:22:9
33
|
4-
LL | use foo::Bar;
4+
LL | use foo::Bar; //~ ERROR unresolved import `foo`
55
| ^^^ did you mean `crate::foo`?
66
|
77
= note: `use` statements changed in Rust 2018; read more at <https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html>
88

99
error[E0432]: unresolved import `foobar`
1010
--> $DIR/local-path-suggestions-2018.rs:31:5
1111
|
12-
LL | use foobar::Baz;
12+
LL | use foobar::Baz; //~ ERROR unresolved import `foobar`
1313
| ^^^^^^ did you mean `baz::foobar`?
1414

1515
error: aborting due to 2 previous errors
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// edition:2018
2+
// compile-flags:--extern foo --extern bar
3+
4+
use foo::bar; //~ ERROR unresolved import
5+
use bar::foo;
6+
7+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
error[E0432]: unresolved import
2+
--> $DIR/deadlock.rs:4:5
3+
|
4+
LL | use foo::bar; //~ ERROR unresolved import
5+
| ^^^^^^^^
6+
7+
error: aborting due to previous error
8+
9+
For more information about this error, try `rustc --explain E0432`.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// edition:2018
2+
3+
#![deny(unused)]
4+
5+
use std::fmt;
6+
7+
// No "unresolved import" + "unused import" combination here.
8+
use fmt::Write; //~ ERROR imports can only refer to extern crate names
9+
//~| ERROR unused import: `fmt::Write`
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
error[E0658]: imports can only refer to extern crate names passed with `--extern` on stable channel (see issue #53130)
2+
--> $DIR/issue-54390.rs:8:5
3+
|
4+
LL | use std::fmt;
5+
| -------- not an extern crate passed with `--extern`
6+
...
7+
LL | use fmt::Write; //~ ERROR imports can only refer to extern crate names
8+
| ^^^
9+
|
10+
= help: add #![feature(uniform_paths)] to the crate attributes to enable
11+
note: this import refers to the module imported here
12+
--> $DIR/issue-54390.rs:5:5
13+
|
14+
LL | use std::fmt;
15+
| ^^^^^^^^
16+
17+
error: unused import: `fmt::Write`
18+
--> $DIR/issue-54390.rs:8:5
19+
|
20+
LL | use fmt::Write; //~ ERROR imports can only refer to extern crate names
21+
| ^^^^^^^^^^
22+
|
23+
note: lint level defined here
24+
--> $DIR/issue-54390.rs:3:9
25+
|
26+
LL | #![deny(unused)]
27+
| ^^^^^^
28+
= note: #[deny(unused_imports)] implied by #[deny(unused)]
29+
30+
error: aborting due to 2 previous errors
31+
32+
For more information about this error, try `rustc --explain E0658`.

0 commit comments

Comments
 (0)