rust/tests/ui/lint/unqualified_local_imports.stderr
2024-09-23 11:57:28 +02:00

15 lines
382 B
Plaintext

error: `use` of a local item without leading `self::`, `super::`, or `crate::`
--> $DIR/unqualified_local_imports.rs:14:5
|
LL | use localmod::S;
| ^^^^^^^^
|
note: the lint level is defined here
--> $DIR/unqualified_local_imports.rs:3:9
|
LL | #![deny(unqualified_local_imports)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error