]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rust-2018/local-path-suggestions-2018.stderr
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / test / ui / rust-2018 / local-path-suggestions-2018.stderr
1 error[E0432]: unresolved import `foo`
2 --> $DIR/local-path-suggestions-2018.rs:20:9
3 |
4 LL | use foo::Bar;
5 | ^^^ Did you mean `crate::foo`?
6 |
7 = note: `use` statements changed in Rust 2018; read more at <https://doc.rust-lang.org/edition-guide/rust-2018/module-system/path-clarity.html>
8
9 error[E0432]: unresolved import `foo`
10 --> $DIR/local-path-suggestions-2018.rs:27:5
11 |
12 LL | use foo::Bar;
13 | ^^^ Did you mean `self::foo`?
14
15 error[E0432]: unresolved import `foobar`
16 --> $DIR/local-path-suggestions-2018.rs:29:5
17 |
18 LL | use foobar::Baz;
19 | ^^^^^^ Did you mean `baz::foobar`?
20
21 error: aborting due to 3 previous errors
22
23 For more information about this error, try `rustc --explain E0432`.