]> git.lizzy.rs Git - rust.git/blob - src/test/ui/editions-crate-root-2018.stderr
Auto merge of #86155 - alexcrichton:abort-on-unwind, r=nikomatsakis
[rust.git] / src / test / ui / editions-crate-root-2018.stderr
1 error[E0433]: failed to resolve: could not find `nonexistant` in the list of imported crates
2   --> $DIR/editions-crate-root-2018.rs:4:26
3    |
4 LL |     fn global_inner(_: ::nonexistant::Foo) {
5    |                          ^^^^^^^^^^^ could not find `nonexistant` in the list of imported crates
6
7 error[E0433]: failed to resolve: could not find `nonexistant` in the crate root
8   --> $DIR/editions-crate-root-2018.rs:7:30
9    |
10 LL |     fn crate_inner(_: crate::nonexistant::Foo) {
11    |                              ^^^^^^^^^^^ could not find `nonexistant` in the crate root
12
13 error[E0412]: cannot find crate `nonexistant` in the list of imported crates
14   --> $DIR/editions-crate-root-2018.rs:11:25
15    |
16 LL |     fn bare_global(_: ::nonexistant) {
17    |                         ^^^^^^^^^^^ not found in the list of imported crates
18
19 error[E0412]: cannot find type `nonexistant` in the crate root
20   --> $DIR/editions-crate-root-2018.rs:14:29
21    |
22 LL |     fn bare_crate(_: crate::nonexistant) {
23    |                             ^^^^^^^^^^^ not found in the crate root
24
25 error: aborting due to 4 previous errors
26
27 Some errors have detailed explanations: E0412, E0433.
28 For more information about an error, try `rustc --explain E0412`.