You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tests/ui/proc-macro/derive-helper-shadowing.stderr
+1-20
Original file line number
Diff line number
Diff line change
@@ -37,25 +37,6 @@ help: consider importing this attribute macro through its public re-export
37
37
LL + use crate::empty_helper;
38
38
|
39
39
40
-
error[E0659]: `empty_helper` is ambiguous
41
-
--> $DIR/derive-helper-shadowing.rs:26:13
42
-
|
43
-
LL | use empty_helper;
44
-
| ^^^^^^^^^^^^ ambiguous name
45
-
|
46
-
= note: ambiguous because of multiple potential import sources
47
-
note: `empty_helper` could refer to the derive helper attribute defined here
48
-
--> $DIR/derive-helper-shadowing.rs:22:10
49
-
|
50
-
LL | #[derive(Empty)]
51
-
| ^^^^^
52
-
note: `empty_helper` could also refer to the attribute macro imported here
53
-
--> $DIR/derive-helper-shadowing.rs:10:5
54
-
|
55
-
LL | use test_macros::empty_attr as empty_helper;
56
-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
57
-
= help: use `crate::empty_helper` to refer to this attribute macro unambiguously
58
-
59
40
error[E0659]: `empty_helper` is ambiguous
60
41
--> $DIR/derive-helper-shadowing.rs:19:3
61
42
|
@@ -88,6 +69,6 @@ LL | #[derive(Empty)]
88
69
= note: for more information, see issue #79202 <https://github.com/rust-lang/rust/issues/79202>
89
70
= note: `#[warn(legacy_derive_helpers)]` on by default
90
71
91
-
error: aborting due to 5 previous errors; 1 warning emitted
72
+
error: aborting due to 4 previous errors; 1 warning emitted
92
73
93
74
For more information about this error, try `rustc --explain E0659`.
Copy file name to clipboardexpand all lines: tests/ui/rust-2018/uniform-paths/ambiguity-macros-nested.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ error[E0659]: `std` is ambiguous
4
4
LL | pub use std::io;
5
5
| ^^^ ambiguous name
6
6
|
7
-
= note: ambiguous because of multiple potential import sources
7
+
= 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
8
8
= note: `std` could refer to a built-in crate
9
9
= help: use `::std` to refer to this crate unambiguously
10
10
note: `std` could also refer to the module defined here
Copy file name to clipboardexpand all lines: tests/ui/rust-2018/uniform-paths/ambiguity-macros.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ error[E0659]: `std` is ambiguous
4
4
LL | use std::io;
5
5
| ^^^ ambiguous name
6
6
|
7
-
= note: ambiguous because of multiple potential import sources
7
+
= 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
8
8
= note: `std` could refer to a built-in crate
9
9
= help: use `::std` to refer to this crate unambiguously
10
10
note: `std` could also refer to the module defined here
0 commit comments