]> git.proxmox.com Git - rustc.git/blame - src/test/ui/editions-crate-root-2018.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / editions-crate-root-2018.stderr
CommitLineData
6a06907d
XL
1error[E0433]: failed to resolve: could not find `nonexistant` in the list of imported crates
2 --> $DIR/editions-crate-root-2018.rs:4:26
3 |
4LL | fn global_inner(_: ::nonexistant::Foo) {
5 | ^^^^^^^^^^^ could not find `nonexistant` in the list of imported crates
6
7error[E0433]: failed to resolve: could not find `nonexistant` in the crate root
8 --> $DIR/editions-crate-root-2018.rs:7:30
9 |
10LL | fn crate_inner(_: crate::nonexistant::Foo) {
11 | ^^^^^^^^^^^ could not find `nonexistant` in the crate root
12
13error[E0412]: cannot find crate `nonexistant` in the list of imported crates
14 --> $DIR/editions-crate-root-2018.rs:11:25
15 |
16LL | fn bare_global(_: ::nonexistant) {
17 | ^^^^^^^^^^^ not found in the list of imported crates
18
19error[E0412]: cannot find type `nonexistant` in the crate root
20 --> $DIR/editions-crate-root-2018.rs:14:29
21 |
22LL | fn bare_crate(_: crate::nonexistant) {
23 | ^^^^^^^^^^^ not found in the crate root
24
25error: aborting due to 4 previous errors
26
27Some errors have detailed explanations: E0412, E0433.
28For more information about an error, try `rustc --explain E0412`.