]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/editions-crate-root-2015.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / resolve / editions-crate-root-2015.stderr
CommitLineData
6a06907d
XL
1error[E0433]: failed to resolve: maybe a missing crate `nonexistant`?
2 --> $DIR/editions-crate-root-2015.rs:4:26
3 |
4LL | fn global_inner(_: ::nonexistant::Foo) {
5 | ^^^^^^^^^^^ maybe a missing crate `nonexistant`?
923072b8
FG
6 |
7 = help: consider adding `extern crate nonexistant` to use the `nonexistant` crate
6a06907d
XL
8
9error[E0433]: failed to resolve: maybe a missing crate `nonexistant`?
10 --> $DIR/editions-crate-root-2015.rs:7:30
11 |
12LL | fn crate_inner(_: crate::nonexistant::Foo) {
13 | ^^^^^^^^^^^ maybe a missing crate `nonexistant`?
923072b8
FG
14 |
15 = help: consider adding `extern crate nonexistant` to use the `nonexistant` crate
6a06907d
XL
16
17error[E0412]: cannot find type `nonexistant` in the crate root
18 --> $DIR/editions-crate-root-2015.rs:11:25
19 |
20LL | fn bare_global(_: ::nonexistant) {
21 | ^^^^^^^^^^^ not found in the crate root
22
23error[E0412]: cannot find type `nonexistant` in the crate root
24 --> $DIR/editions-crate-root-2015.rs:14:29
25 |
26LL | fn bare_crate(_: crate::nonexistant) {
27 | ^^^^^^^^^^^ not found in the crate root
28
29error: aborting due to 4 previous errors
30
31Some errors have detailed explanations: E0412, E0433.
32For more information about an error, try `rustc --explain E0412`.