]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-41211.stderr
Merge commit '0c89065b934397b62838fe3e4ef6f6352fc52daf' into libgccjit-codegen
[rust.git] / src / test / ui / proc-macro / issue-41211.stderr
1 error[E0659]: `identity_attr` is ambiguous (macro-expanded name vs less macro-expanded name from outer scope during import/macro resolution)
2   --> $DIR/issue-41211.rs:11:4
3    |
4 LL | #![identity_attr]
5    |    ^^^^^^^^^^^^^ ambiguous name
6    |
7 note: `identity_attr` could refer to the attribute macro imported here
8   --> $DIR/issue-41211.rs:14:5
9    |
10 LL | use test_macros::identity_attr;
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
12    = help: use `crate::identity_attr` to refer to this attribute macro unambiguously
13 note: `identity_attr` could also refer to the explicitly registered attribute defined here
14   --> $DIR/issue-41211.rs:9:18
15    |
16 LL | #![register_attr(identity_attr)]
17    |                  ^^^^^^^^^^^^^
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0659`.