@@ -3,14 +3,13 @@ warning: ambiguous glob re-exports
33 |
44LL | pub use self::range::*;
55 | ^^^^^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
6- LL |
76LL | use super::prelude::*;
87 | ----------------- but the name `date_range` in the value namespace is also re-exported here
98 |
109 = note: `#[warn(ambiguous_glob_reexports)]` on by default
1110
1211error: `date_range` is ambiguous
13- --> $DIR/ambiguous-9.rs:25 :5
12+ --> $DIR/ambiguous-9.rs:23 :5
1413 |
1514LL | date_range();
1615 | ^^^^^^^^^^ ambiguous name
@@ -25,24 +24,23 @@ LL | pub use self::range::*;
2524 | ^^^^^^^^^^^^^^
2625 = help: consider adding an explicit import of `date_range` to disambiguate
2726note: `date_range` could also refer to the function imported here
28- --> $DIR/ambiguous-9.rs:9 :9
27+ --> $DIR/ambiguous-9.rs:8 :9
2928 |
3029LL | use super::prelude::*;
3130 | ^^^^^^^^^^^^^^^^^
3231 = help: consider adding an explicit import of `date_range` to disambiguate
3332 = note: `#[deny(ambiguous_glob_imports)]` on by default
3433
3534warning: ambiguous glob re-exports
36- --> $DIR/ambiguous-9.rs:16 :13
35+ --> $DIR/ambiguous-9.rs:15 :13
3736 |
3837LL | pub use self::t::*;
3938 | ^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
40- LL |
4139LL | pub use super::dsl::*;
4240 | ------------- but the name `date_range` in the value namespace is also re-exported here
4341
4442error: `date_range` is ambiguous
45- --> $DIR/ambiguous-9.rs:25 :5
43+ --> $DIR/ambiguous-9.rs:23 :5
4644 |
4745LL | date_range();
4846 | ^^^^^^^^^^ ambiguous name
@@ -51,13 +49,13 @@ LL | date_range();
5149 = note: for more information, see issue #114095 <https://github.com/rust-lang/rust/issues/114095>
5250 = note: ambiguous because of multiple glob imports of a name in the same module
5351note: `date_range` could refer to the function imported here
54- --> $DIR/ambiguous-9.rs:21 :5
52+ --> $DIR/ambiguous-9.rs:19 :5
5553 |
5654LL | use dsl::*;
5755 | ^^^^^^
5856 = help: consider adding an explicit import of `date_range` to disambiguate
5957note: `date_range` could also refer to the function imported here
60- --> $DIR/ambiguous-9.rs:22 :5
58+ --> $DIR/ambiguous-9.rs:20 :5
6159 |
6260LL | use prelude::*;
6361 | ^^^^^^^^^^
@@ -67,7 +65,7 @@ error: aborting due to 2 previous errors; 2 warnings emitted
6765
6866Future incompatibility report: Future breakage diagnostic:
6967error: `date_range` is ambiguous
70- --> $DIR/ambiguous-9.rs:25 :5
68+ --> $DIR/ambiguous-9.rs:23 :5
7169 |
7270LL | date_range();
7371 | ^^^^^^^^^^ ambiguous name
@@ -82,7 +80,7 @@ LL | pub use self::range::*;
8280 | ^^^^^^^^^^^^^^
8381 = help: consider adding an explicit import of `date_range` to disambiguate
8482note: `date_range` could also refer to the function imported here
85- --> $DIR/ambiguous-9.rs:9 :9
83+ --> $DIR/ambiguous-9.rs:8 :9
8684 |
8785LL | use super::prelude::*;
8886 | ^^^^^^^^^^^^^^^^^
@@ -91,7 +89,7 @@ LL | use super::prelude::*;
9189
9290Future breakage diagnostic:
9391error: `date_range` is ambiguous
94- --> $DIR/ambiguous-9.rs:25 :5
92+ --> $DIR/ambiguous-9.rs:23 :5
9593 |
9694LL | date_range();
9795 | ^^^^^^^^^^ ambiguous name
@@ -100,13 +98,13 @@ LL | date_range();
10098 = note: for more information, see issue #114095 <https://github.com/rust-lang/rust/issues/114095>
10199 = note: ambiguous because of multiple glob imports of a name in the same module
102100note: `date_range` could refer to the function imported here
103- --> $DIR/ambiguous-9.rs:21 :5
101+ --> $DIR/ambiguous-9.rs:19 :5
104102 |
105103LL | use dsl::*;
106104 | ^^^^^^
107105 = help: consider adding an explicit import of `date_range` to disambiguate
108106note: `date_range` could also refer to the function imported here
109- --> $DIR/ambiguous-9.rs:22 :5
107+ --> $DIR/ambiguous-9.rs:20 :5
110108 |
111109LL | use prelude::*;
112110 | ^^^^^^^^^^
0 commit comments