os-rust/tests/ui/lint/lint-qualification.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
2.4 KiB
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error: unnecessary qualification
2024-03-11 22:39:02 +08:00
--> $DIR/lint-qualification.rs:12:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | foo::bar();
2018-08-08 14:28:26 +02:00
| ^^^^^^^^
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
--> $DIR/lint-qualification.rs:2:9
2018-08-08 14:28:26 +02:00
|
LL | #![deny(unused_qualifications)]
| ^^^^^^^^^^^^^^^^^^^^^
help: remove the unnecessary path segments
|
LL - foo::bar();
LL + bar();
|
2018-08-08 14:28:26 +02:00
error: unnecessary qualification
2024-03-11 22:39:02 +08:00
--> $DIR/lint-qualification.rs:13:5
|
LL | crate::foo::bar();
| ^^^^^^^^^^^^^^^
|
help: remove the unnecessary path segments
|
LL - crate::foo::bar();
LL + bar();
|
error: unnecessary qualification
2024-03-11 22:39:02 +08:00
--> $DIR/lint-qualification.rs:18:13
|
LL | let _ = std::string::String::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
help: remove the unnecessary path segments
|
LL - let _ = std::string::String::new();
LL + let _ = String::new();
|
error: unnecessary qualification
--> $DIR/lint-qualification.rs:20:12
|
LL | let _: std::vec::Vec<String> = std::vec::Vec::<String>::new();
| ^^^^^^^^^^^^^^^^^^^^^
|
help: remove the unnecessary path segments
|
LL - let _: std::vec::Vec<String> = std::vec::Vec::<String>::new();
LL + let _: Vec<String> = std::vec::Vec::<String>::new();
|
error: unnecessary qualification
--> $DIR/lint-qualification.rs:20:36
|
LL | let _: std::vec::Vec<String> = std::vec::Vec::<String>::new();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: remove the unnecessary path segments
|
LL - let _: std::vec::Vec<String> = std::vec::Vec::<String>::new();
LL + let _: std::vec::Vec<String> = Vec::<String>::new();
|
2024-03-11 22:39:02 +08:00
error: unused import: `std::fmt`
--> $DIR/lint-qualification.rs:24:9
|
2024-03-11 22:39:02 +08:00
LL | use std::fmt;
| ^^^^^^^^
|
2024-03-11 22:39:02 +08:00
note: the lint level is defined here
--> $DIR/lint-qualification.rs:3:9
|
2024-03-11 22:39:02 +08:00
LL | #![deny(unused_imports)]
| ^^^^^^^^^^^^^^
error: unnecessary qualification
--> $DIR/lint-qualification.rs:29:13
|
LL | let _ = <bool as std::default::Default>::default(); // issue #121999 (modified)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: remove the unnecessary path segments
|
LL - let _ = <bool as std::default::Default>::default(); // issue #121999 (modified)
LL + let _ = <bool as Default>::default(); // issue #121999 (modified)
|
error: aborting due to 7 previous errors
2018-08-08 14:28:26 +02:00