summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/macros.stderr
blob: 110548d1d6ae1604784e8f4768d875ea3da40639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
error[E0659]: `m` is ambiguous
  --> $DIR/macros.rs:16:5
   |
LL |     m! {
   |     ^ ambiguous name
   |
   = note: ambiguous because of a conflict between a name from a glob import and a macro-expanded name in the same module during import or macro resolution
note: `m` could refer to the macro imported here
  --> $DIR/macros.rs:18:13
   |
LL |         use foo::m;
   |             ^^^^^^
note: `m` could also refer to the macro imported here
  --> $DIR/macros.rs:15:9
   |
LL |     use two_macros::*;
   |         ^^^^^^^^^^^^^
   = help: consider adding an explicit import of `m` to disambiguate

error[E0659]: `m` is ambiguous
  --> $DIR/macros.rs:16:5
   |
LL |     m! {
   |     ^ ambiguous name
   |
   = note: ambiguous because of a conflict between a name from a glob import and a macro-expanded name in the same module during import or macro resolution
note: `m` could refer to the macro imported here
  --> $DIR/macros.rs:18:13
   |
LL |         use foo::m;
   |             ^^^^^^
note: `m` could also refer to the macro imported here
  --> $DIR/macros.rs:15:9
   |
LL |     use two_macros::*;
   |         ^^^^^^^^^^^^^
   = help: consider adding an explicit import of `m` to disambiguate

error[E0659]: `m` is ambiguous
  --> $DIR/macros.rs:30:9
   |
LL |         m! {
   |         ^ ambiguous name
   |
   = note: ambiguous because of a conflict between a macro-expanded name and a less macro-expanded name from outer scope during import or macro resolution
note: `m` could refer to the macro imported here
  --> $DIR/macros.rs:31:17
   |
LL |             use two_macros::n as m;
   |                 ^^^^^^^^^^^^^^^^^^
note: `m` could also refer to the macro imported here
  --> $DIR/macros.rs:23:9
   |
LL |     use two_macros::m;
   |         ^^^^^^^^^^^^^
   = help: use `self::m` to refer to this macro unambiguously

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0659`.