rust/tests/ui/lint/lint-directives-on-use-items-issue-10534.stderr
Lukas Wirth eae7fe1bdb Use non-2015 edition paths in tests that do not test for their resolution
This allows for testing these tests on editions other than 2015
2025-06-03 13:35:31 +02:00

27 lines
684 B
Plaintext

error: unused import: `crate::a::x`
--> $DIR/lint-directives-on-use-items-issue-10534.rs:12:9
|
LL | use crate::a::x;
| ^^^^^^^^^^^
|
note: the lint level is defined here
--> $DIR/lint-directives-on-use-items-issue-10534.rs:1:9
|
LL | #![deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: unused import: `crate::a::y`
--> $DIR/lint-directives-on-use-items-issue-10534.rs:21:9
|
LL | use crate::a::y;
| ^^^^^^^^^^^
|
note: the lint level is defined here
--> $DIR/lint-directives-on-use-items-issue-10534.rs:20:12
|
LL | #[deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: aborting due to 2 previous errors