@@ -3,13 +3,14 @@ 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 |
67LL | use super::prelude::*;
78 | ----------------- but the name `date_range` in the value namespace is also re-exported here
89 |
910 = note: `#[warn(ambiguous_glob_reexports)]` on by default
1011
1112warning: `date_range` is ambiguous
12- --> $DIR/ambiguous-9.rs:24 :5
13+ --> $DIR/ambiguous-9.rs:26 :5
1314 |
1415LL | date_range();
1516 | ^^^^^^^^^^ ambiguous name
@@ -24,23 +25,24 @@ LL | pub use self::range::*;
2425 | ^^^^^^^^^^^^^^
2526 = help: consider adding an explicit import of `date_range` to disambiguate
2627note: `date_range` could also refer to the function imported here
27- --> $DIR/ambiguous-9.rs:9 :9
28+ --> $DIR/ambiguous-9.rs:10 :9
2829 |
2930LL | use super::prelude::*;
3031 | ^^^^^^^^^^^^^^^^^
3132 = help: consider adding an explicit import of `date_range` to disambiguate
3233 = note: `#[warn(ambiguous_glob_imports)]` on by default
3334
3435warning: ambiguous glob re-exports
35- --> $DIR/ambiguous-9.rs:16 :13
36+ --> $DIR/ambiguous-9.rs:17 :13
3637 |
3738LL | pub use self::t::*;
3839 | ^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
40+ LL |
3941LL | pub use super::dsl::*;
4042 | ------------- but the name `date_range` in the value namespace is also re-exported here
4143
4244warning: `date_range` is ambiguous
43- --> $DIR/ambiguous-9.rs:24 :5
45+ --> $DIR/ambiguous-9.rs:26 :5
4446 |
4547LL | date_range();
4648 | ^^^^^^^^^^ ambiguous name
@@ -49,13 +51,13 @@ LL | date_range();
4951 = note: for more information, see issue #114095 <https://github.com/rust-lang/rust/issues/114095>
5052 = note: ambiguous because of multiple glob imports of a name in the same module
5153note: `date_range` could refer to the function imported here
52- --> $DIR/ambiguous-9.rs:20 :5
54+ --> $DIR/ambiguous-9.rs:22 :5
5355 |
5456LL | use dsl::*;
5557 | ^^^^^^
5658 = help: consider adding an explicit import of `date_range` to disambiguate
5759note: `date_range` could also refer to the function imported here
58- --> $DIR/ambiguous-9.rs:21 :5
60+ --> $DIR/ambiguous-9.rs:23 :5
5961 |
6062LL | use prelude::*;
6163 | ^^^^^^^^^^
0 commit comments