@@ -3,13 +3,14 @@ warning: ambiguous glob re-exports
3
3
|
4
4
LL | pub use self::range::*;
5
5
| ^^^^^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
6
+ LL |
6
7
LL | use super::prelude::*;
7
8
| ----------------- but the name `date_range` in the value namespace is also re-exported here
8
9
|
9
10
= note: `#[warn(ambiguous_glob_reexports)]` on by default
10
11
11
12
error: `date_range` is ambiguous
12
- --> $DIR/ambiguous-9.rs:23 :5
13
+ --> $DIR/ambiguous-9.rs:25 :5
13
14
|
14
15
LL | date_range();
15
16
| ^^^^^^^^^^ ambiguous name
@@ -24,23 +25,24 @@ LL | pub use self::range::*;
24
25
| ^^^^^^^^^^^^^^
25
26
= help: consider adding an explicit import of `date_range` to disambiguate
26
27
note: `date_range` could also refer to the function imported here
27
- --> $DIR/ambiguous-9.rs:8 :9
28
+ --> $DIR/ambiguous-9.rs:9 :9
28
29
|
29
30
LL | use super::prelude::*;
30
31
| ^^^^^^^^^^^^^^^^^
31
32
= help: consider adding an explicit import of `date_range` to disambiguate
32
33
= note: `#[deny(ambiguous_glob_imports)]` on by default
33
34
34
35
warning: ambiguous glob re-exports
35
- --> $DIR/ambiguous-9.rs:15 :13
36
+ --> $DIR/ambiguous-9.rs:16 :13
36
37
|
37
38
LL | pub use self::t::*;
38
39
| ^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
40
+ LL |
39
41
LL | pub use super::dsl::*;
40
42
| ------------- but the name `date_range` in the value namespace is also re-exported here
41
43
42
44
error: `date_range` is ambiguous
43
- --> $DIR/ambiguous-9.rs:23 :5
45
+ --> $DIR/ambiguous-9.rs:25 :5
44
46
|
45
47
LL | date_range();
46
48
| ^^^^^^^^^^ ambiguous name
@@ -49,13 +51,13 @@ LL | date_range();
49
51
= note: for more information, see issue #114095 <https://github.com/rust-lang/rust/issues/114095>
50
52
= note: ambiguous because of multiple glob imports of a name in the same module
51
53
note: `date_range` could refer to the function imported here
52
- --> $DIR/ambiguous-9.rs:19 :5
54
+ --> $DIR/ambiguous-9.rs:21 :5
53
55
|
54
56
LL | use dsl::*;
55
57
| ^^^^^^
56
58
= help: consider adding an explicit import of `date_range` to disambiguate
57
59
note: `date_range` could also refer to the function imported here
58
- --> $DIR/ambiguous-9.rs:20 :5
60
+ --> $DIR/ambiguous-9.rs:22 :5
59
61
|
60
62
LL | use prelude::*;
61
63
| ^^^^^^^^^^
@@ -65,7 +67,7 @@ error: aborting due to 2 previous errors; 2 warnings emitted
65
67
66
68
Future incompatibility report: Future breakage diagnostic:
67
69
error: `date_range` is ambiguous
68
- --> $DIR/ambiguous-9.rs:23 :5
70
+ --> $DIR/ambiguous-9.rs:25 :5
69
71
|
70
72
LL | date_range();
71
73
| ^^^^^^^^^^ ambiguous name
@@ -80,7 +82,7 @@ LL | pub use self::range::*;
80
82
| ^^^^^^^^^^^^^^
81
83
= help: consider adding an explicit import of `date_range` to disambiguate
82
84
note: `date_range` could also refer to the function imported here
83
- --> $DIR/ambiguous-9.rs:8 :9
85
+ --> $DIR/ambiguous-9.rs:9 :9
84
86
|
85
87
LL | use super::prelude::*;
86
88
| ^^^^^^^^^^^^^^^^^
@@ -89,7 +91,7 @@ LL | use super::prelude::*;
89
91
90
92
Future breakage diagnostic:
91
93
error: `date_range` is ambiguous
92
- --> $DIR/ambiguous-9.rs:23 :5
94
+ --> $DIR/ambiguous-9.rs:25 :5
93
95
|
94
96
LL | date_range();
95
97
| ^^^^^^^^^^ ambiguous name
@@ -98,13 +100,13 @@ LL | date_range();
98
100
= note: for more information, see issue #114095 <https://github.com/rust-lang/rust/issues/114095>
99
101
= note: ambiguous because of multiple glob imports of a name in the same module
100
102
note: `date_range` could refer to the function imported here
101
- --> $DIR/ambiguous-9.rs:19 :5
103
+ --> $DIR/ambiguous-9.rs:21 :5
102
104
|
103
105
LL | use dsl::*;
104
106
| ^^^^^^
105
107
= help: consider adding an explicit import of `date_range` to disambiguate
106
108
note: `date_range` could also refer to the function imported here
107
- --> $DIR/ambiguous-9.rs:20 :5
109
+ --> $DIR/ambiguous-9.rs:22 :5
108
110
|
109
111
LL | use prelude::*;
110
112
| ^^^^^^^^^^
0 commit comments