mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
16 lines
485 B
Text
16 lines
485 B
Text
|
error: usage of `outer().expn_info()`
|
||
|
--> $DIR/outer_expn_info.rs:19:33
|
||
|
|
|
||
|
LL | let _ = expr.span.ctxt().outer().expn_info();
|
||
|
| ^^^^^^^^^^^^^^^^^^^^ help: try: `.outer_expn_info()`
|
||
|
|
|
||
|
note: lint level defined here
|
||
|
--> $DIR/outer_expn_info.rs:1:9
|
||
|
|
|
||
|
LL | #![deny(clippy::internal)]
|
||
|
| ^^^^^^^^^^^^^^^^
|
||
|
= note: #[deny(clippy::outer_expn_info)] implied by #[deny(clippy::internal)]
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|