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