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
-
11
1
warning: `date_range` is ambiguous
12
2
--> $DIR/ambiguous-9.rs:24:5
13
3
|
@@ -31,14 +21,6 @@ LL | use super::prelude::*;
31
21
= help: consider adding an explicit import of `date_range` to disambiguate
32
22
= note: `#[warn(ambiguous_glob_imports)]` on by default
33
23
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
-
42
24
warning: `date_range` is ambiguous
43
25
--> $DIR/ambiguous-9.rs:24:5
44
26
|
@@ -61,5 +43,5 @@ LL | use prelude::*;
61
43
| ^^^^^^^^^^
62
44
= help: consider adding an explicit import of `date_range` to disambiguate
63
45
64
- warning: 4 warnings emitted
46
+ warning: 2 warnings emitted
65
47
0 commit comments