rust/tests/ui/crate_in_macro_def.stderr
2022-03-24 05:08:10 -04:00

15 lines
499 B
Plaintext

error: reference to the macro call's crate, which is rarely intended
--> $DIR/crate_in_macro_def.rs:19:28
|
LL | println!("{}", crate::unhygienic::MESSAGE);
| ^^^^^
|
= note: `-D clippy::crate-in-macro-def` implied by `-D warnings`
help: if reference to the macro definition's crate is intended, use
|
LL | println!("{}", $crate::unhygienic::MESSAGE);
| ~~~~~~
error: aborting due to previous error