rust/tests/ui/lint/lint-qualification.stderr
2023-07-13 08:26:02 +08:00

19 lines
388 B
Plaintext

error: unnecessary qualification
--> $DIR/lint-qualification.rs:10:5
|
LL | foo::bar();
| ^^^^^^^^
|
note: the lint level is defined here
--> $DIR/lint-qualification.rs:1:9
|
LL | #![deny(unused_qualifications)]
| ^^^^^^^^^^^^^^^^^^^^^
help: replace it with the unqualified path
|
LL | bar();
| ~~~
error: aborting due to previous error