1- warning: ambiguous glob re-exports
2- --> $DIR/ambiguous-9.rs:8:13
3- |
4- LL | pub use self::range::*;
5- | ^^^^^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
6- LL | use super::prelude::*;
7- | ----------------- but the name `date_range` in the value namespace is also re-exported here
8- |
9- = note: `#[warn(ambiguous_glob_reexports)]` on by default
10-
111warning: `date_range` is ambiguous
122 --> $DIR/ambiguous-9.rs:24:5
133 |
@@ -31,14 +21,6 @@ LL | use super::prelude::*;
3121 = help: consider adding an explicit import of `date_range` to disambiguate
3222 = note: `#[warn(ambiguous_glob_imports)]` on by default
3323
34- warning: ambiguous glob re-exports
35- --> $DIR/ambiguous-9.rs:16:13
36- |
37- LL | pub use self::t::*;
38- | ^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
39- LL | pub use super::dsl::*;
40- | ------------- but the name `date_range` in the value namespace is also re-exported here
41-
4224warning: `date_range` is ambiguous
4325 --> $DIR/ambiguous-9.rs:24:5
4426 |
@@ -61,5 +43,5 @@ LL | use prelude::*;
6143 | ^^^^^^^^^^
6244 = help: consider adding an explicit import of `date_range` to disambiguate
6345
64- warning: 4 warnings emitted
46+ warning: 2 warnings emitted
6547
0 commit comments