]> git.lizzy.rs Git - rust.git/blob - src/test/ui/editions-crate-root-2015.stderr
Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov
[rust.git] / src / test / ui / editions-crate-root-2015.stderr
1 error[E0433]: failed to resolve: maybe a missing crate `nonexistant`?
2   --> $DIR/editions-crate-root-2015.rs:4:26
3    |
4 LL |     fn global_inner(_: ::nonexistant::Foo) {
5    |                          ^^^^^^^^^^^ maybe a missing crate `nonexistant`?
6
7 error[E0433]: failed to resolve: maybe a missing crate `nonexistant`?
8   --> $DIR/editions-crate-root-2015.rs:7:30
9    |
10 LL |     fn crate_inner(_: crate::nonexistant::Foo) {
11    |                              ^^^^^^^^^^^ maybe a missing crate `nonexistant`?
12
13 error[E0412]: cannot find type `nonexistant` in the crate root
14   --> $DIR/editions-crate-root-2015.rs:11:25
15    |
16 LL |     fn bare_global(_: ::nonexistant) {
17    |                         ^^^^^^^^^^^ not found in the crate root
18
19 error[E0412]: cannot find type `nonexistant` in the crate root
20   --> $DIR/editions-crate-root-2015.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`.