@@ -3,13 +3,14 @@ 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 |
6
7
LL | use super::prelude::*;
7
8
| ----------------- but the name `date_range` in the value namespace is also re-exported here
8
9
|
9
10
= note: `#[warn(ambiguous_glob_reexports)]` on by default
10
11
11
12
warning: `date_range` is ambiguous
12
- --> $DIR/ambiguous-9.rs:24 :5
13
+ --> $DIR/ambiguous-9.rs:26 :5
13
14
|
14
15
LL | date_range();
15
16
| ^^^^^^^^^^ ambiguous name
@@ -24,23 +25,24 @@ LL | pub use self::range::*;
24
25
| ^^^^^^^^^^^^^^
25
26
= help: consider adding an explicit import of `date_range` to disambiguate
26
27
note: `date_range` could also refer to the function imported here
27
- --> $DIR/ambiguous-9.rs:9 :9
28
+ --> $DIR/ambiguous-9.rs:10 :9
28
29
|
29
30
LL | use super::prelude::*;
30
31
| ^^^^^^^^^^^^^^^^^
31
32
= help: consider adding an explicit import of `date_range` to disambiguate
32
33
= note: `#[warn(ambiguous_glob_imports)]` on by default
33
34
34
35
warning: ambiguous glob re-exports
35
- --> $DIR/ambiguous-9.rs:16 :13
36
+ --> $DIR/ambiguous-9.rs:17 :13
36
37
|
37
38
LL | pub use self::t::*;
38
39
| ^^^^^^^^^^ the name `date_range` in the value namespace is first re-exported here
40
+ LL |
39
41
LL | pub use super::dsl::*;
40
42
| ------------- but the name `date_range` in the value namespace is also re-exported here
41
43
42
44
warning: `date_range` is ambiguous
43
- --> $DIR/ambiguous-9.rs:24 :5
45
+ --> $DIR/ambiguous-9.rs:26 :5
44
46
|
45
47
LL | date_range();
46
48
| ^^^^^^^^^^ ambiguous name
@@ -49,13 +51,13 @@ LL | date_range();
49
51
= note: for more information, see issue #114095 <https://github.com/rust-lang/rust/issues/114095>
50
52
= note: ambiguous because of multiple glob imports of a name in the same module
51
53
note: `date_range` could refer to the function imported here
52
- --> $DIR/ambiguous-9.rs:20 :5
54
+ --> $DIR/ambiguous-9.rs:22 :5
53
55
|
54
56
LL | use dsl::*;
55
57
| ^^^^^^
56
58
= help: consider adding an explicit import of `date_range` to disambiguate
57
59
note: `date_range` could also refer to the function imported here
58
- --> $DIR/ambiguous-9.rs:21 :5
60
+ --> $DIR/ambiguous-9.rs:23 :5
59
61
|
60
62
LL | use prelude::*;
61
63
| ^^^^^^^^^^
0 commit comments