mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 15:11:30 +00:00
15 lines
422 B
Text
15 lines
422 B
Text
|
error: consider bringing this path into scope with the `use` keyword
|
||
|
--> tests/ui-toml/absolute_paths/absolute_paths_2015.rs:15:13
|
||
|
|
|
||
|
LL | let _ = ::m1::m2::X;
|
||
|
| ^^^^^^^^^^^
|
||
|
|
|
||
|
note: the lint level is defined here
|
||
|
--> tests/ui-toml/absolute_paths/absolute_paths_2015.rs:6:9
|
||
|
|
|
||
|
LL | #![deny(clippy::absolute_paths)]
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 1 previous error
|
||
|
|