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/imports/issue-109148.stderr
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@ LL | use std::mem;
17
17
|
18
18
= 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
19
19
= note: `std` could refer to a built-in crate
20
-
= help: use `::std` to refer to this crate unambiguously
21
20
note: `std` could also refer to the crate imported here
22
21
--> $DIR/issue-109148.rs:6:9
23
22
|
@@ -26,8 +25,7 @@ LL | extern crate core as std;
26
25
...
27
26
LL | m!();
28
27
| ---- in this macro invocation
29
-
= help: use `::std` to refer to this crate unambiguously
30
-
= help: or use `crate::std` to refer to this crate unambiguously
28
+
= help: use `crate::std` to refer to this crate unambiguously
31
29
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
32
30
33
31
error[E0659]: `std` is ambiguous
@@ -38,7 +36,6 @@ LL | use ::std::mem as _;
38
36
|
39
37
= 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
40
38
= note: `std` could refer to a built-in crate
41
-
= help: use `::std` to refer to this crate unambiguously
42
39
note: `std` could also refer to the crate imported here
43
40
--> $DIR/issue-109148.rs:6:9
44
41
|
@@ -47,7 +44,6 @@ LL | extern crate core as std;
47
44
...
48
45
LL | m!();
49
46
| ---- in this macro invocation
50
-
= help: use `::std` to refer to this crate unambiguously
51
47
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
Copy file name to clipboardExpand all lines: tests/ui/macros/issue-78325-inconsistent-resolution.stderr
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,6 @@ LL | core::panic!();
17
17
|
18
18
= 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
19
19
= note: `core` could refer to a built-in crate
20
-
= help: use `::core` to refer to this crate unambiguously
21
20
note: `core` could also refer to the crate imported here
= help: use `::core` to refer to this crate unambiguously
30
-
= help: or use `crate::core` to refer to this crate unambiguously
28
+
= help: use `crate::core` to refer to this crate unambiguously
31
29
= note: this error originates in the macro `define_other_core` (in Nightly builds, run with -Z macro-backtrace for more info)
32
30
33
31
error[E0659]: `core` is ambiguous
@@ -38,7 +36,6 @@ LL | ::core::panic!();
38
36
|
39
37
= 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
40
38
= note: `core` could refer to a built-in crate
41
-
= help: use `::core` to refer to this crate unambiguously
42
39
note: `core` could also refer to the crate imported here
0 commit comments