]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-41211.stderr
Auto merge of #90290 - nyanpasu64:fix-string-as-mut-vec, r=m-ou-se
[rust.git] / src / test / ui / proc-macro / issue-41211.stderr
1 error[E0659]: `identity_attr` is ambiguous
2   --> $DIR/issue-41211.rs:11:4
3    |
4 LL | #![identity_attr]
5    |    ^^^^^^^^^^^^^ ambiguous name
6    |
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 note: `identity_attr` could refer to the attribute macro imported here
9   --> $DIR/issue-41211.rs:14:5
10    |
11 LL | use test_macros::identity_attr;
12    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
13    = help: use `crate::identity_attr` to refer to this attribute macro unambiguously
14 note: `identity_attr` could also refer to the explicitly registered attribute defined here
15   --> $DIR/issue-41211.rs:9:18
16    |
17 LL | #![register_attr(identity_attr)]
18    |                  ^^^^^^^^^^^^^
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0659`.