26 lines
838 B
Text
26 lines
838 B
Text
error: invalid path
|
|
--> tests/ui-internal/invalid_paths.rs:15:5
|
|
|
|
|
LL | pub const TRANSMUTE: [&str; 4] = ["core", "intrinsics", "", "transmute"];
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> tests/ui-internal/invalid_paths.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::invalid_paths)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: invalid path
|
|
--> tests/ui-internal/invalid_paths.rs:19:5
|
|
|
|
|
LL | pub const BAD_CRATE_PATH: [&str; 2] = ["bad", "path"];
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: invalid path
|
|
--> tests/ui-internal/invalid_paths.rs:23:5
|
|
|
|
|
LL | pub const BAD_MOD_PATH: [&str; 2] = ["std", "xxx"];
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|