|
1 | 1 | error[E0432]: unresolved import `super::inner::doesnt_exist`
|
2 |
| - --> $DIR/diagnostics-same-crate.rs:28:9 |
| 2 | + --> $DIR/diagnostics-same-crate.rs:30:9 |
3 | 3 | |
|
4 | 4 | LL | use super::inner::doesnt_exist;
|
5 | 5 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^ no `doesnt_exist` in `inner`
|
6 | 6 | |
|
7 | 7 | note: found an item that was configured out
|
8 |
| - --> $DIR/diagnostics-same-crate.rs:7:13 |
| 8 | + --> $DIR/diagnostics-same-crate.rs:9:13 |
9 | 9 | |
|
10 | 10 | LL | pub mod doesnt_exist {
|
11 | 11 | | ^^^^^^^^^^^^
|
12 | 12 |
|
13 | 13 | error[E0432]: unresolved import `super::inner::doesnt_exist`
|
14 |
| - --> $DIR/diagnostics-same-crate.rs:31:23 |
| 14 | + --> $DIR/diagnostics-same-crate.rs:33:23 |
15 | 15 | |
|
16 | 16 | LL | use super::inner::doesnt_exist::hi;
|
17 | 17 | | ^^^^^^^^^^^^ could not find `doesnt_exist` in `inner`
|
18 | 18 | |
|
19 | 19 | note: found an item that was configured out
|
20 |
| - --> $DIR/diagnostics-same-crate.rs:7:13 |
| 20 | + --> $DIR/diagnostics-same-crate.rs:9:13 |
21 | 21 | |
|
22 | 22 | LL | pub mod doesnt_exist {
|
23 | 23 | | ^^^^^^^^^^^^
|
24 | 24 |
|
25 | 25 | error[E0433]: failed to resolve: could not find `doesnt_exist` in `inner`
|
26 |
| - --> $DIR/diagnostics-same-crate.rs:50:12 |
| 26 | + --> $DIR/diagnostics-same-crate.rs:52:12 |
27 | 27 | |
|
28 | 28 | LL | inner::doesnt_exist::hello();
|
29 | 29 | | ^^^^^^^^^^^^ could not find `doesnt_exist` in `inner`
|
30 | 30 | |
|
31 | 31 | note: found an item that was configured out
|
32 |
| - --> $DIR/diagnostics-same-crate.rs:7:13 |
| 32 | + --> $DIR/diagnostics-same-crate.rs:9:13 |
33 | 33 | |
|
34 | 34 | LL | pub mod doesnt_exist {
|
35 | 35 | | ^^^^^^^^^^^^
|
36 | 36 |
|
37 | 37 | error[E0425]: cannot find function `uwu` in module `inner`
|
38 |
| - --> $DIR/diagnostics-same-crate.rs:45:12 |
| 38 | + --> $DIR/diagnostics-same-crate.rs:47:12 |
39 | 39 | |
|
40 | 40 | LL | inner::uwu();
|
41 | 41 | | ^^^ not found in `inner`
|
42 | 42 | |
|
43 | 43 | note: found an item that was configured out
|
44 |
| - --> $DIR/diagnostics-same-crate.rs:3:12 |
| 44 | + --> $DIR/diagnostics-same-crate.rs:5:12 |
45 | 45 | |
|
46 | 46 | LL | pub fn uwu() {}
|
47 | 47 | | ^^^
|
48 | 48 |
|
49 | 49 | error[E0425]: cannot find function `meow` in module `inner::right`
|
50 |
| - --> $DIR/diagnostics-same-crate.rs:54:19 |
| 50 | + --> $DIR/diagnostics-same-crate.rs:56:19 |
51 | 51 | |
|
52 | 52 | LL | inner::right::meow();
|
53 | 53 | | ^^^^ not found in `inner::right`
|
54 | 54 | |
|
55 | 55 | note: found an item that was configured out
|
56 |
| - --> $DIR/diagnostics-same-crate.rs:22:16 |
| 56 | + --> $DIR/diagnostics-same-crate.rs:24:16 |
57 | 57 | |
|
58 | 58 | LL | pub fn meow() {}
|
59 | 59 | | ^^^^
|
60 | 60 | = note: the item is gated behind the `what-a-cool-feature` feature
|
61 | 61 |
|
62 | 62 | error[E0425]: cannot find function `uwu` in this scope
|
63 |
| - --> $DIR/diagnostics-same-crate.rs:41:5 |
| 63 | + --> $DIR/diagnostics-same-crate.rs:43:5 |
64 | 64 | |
|
65 | 65 | LL | uwu();
|
66 | 66 | | ^^^ not found in this scope
|
67 | 67 |
|
68 | 68 | error[E0425]: cannot find function `vanished` in this scope
|
69 |
| - --> $DIR/diagnostics-same-crate.rs:61:5 |
| 69 | + --> $DIR/diagnostics-same-crate.rs:63:5 |
70 | 70 | |
|
71 | 71 | LL | vanished();
|
72 | 72 | | ^^^^^^^^ not found in this scope
|
|
0 commit comments