mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
104 lines
2.7 KiB
Plaintext
104 lines
2.7 KiB
Plaintext
error: unnecessary qualification
|
|
--> $DIR/lint-qualification.rs:12:5
|
|
|
|
|
LL | foo::bar();
|
|
| ^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/lint-qualification.rs:2:9
|
|
|
|
|
LL | #![deny(unused_qualifications)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
help: remove the unnecessary path segments
|
|
|
|
|
LL - foo::bar();
|
|
LL + bar();
|
|
|
|
|
|
|
error: unnecessary qualification
|
|
--> $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
|
|
--> $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:19:13
|
|
|
|
|
LL | let _ = ::std::env::current_dir();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: remove the unnecessary path segments
|
|
|
|
|
LL - let _ = ::std::env::current_dir();
|
|
LL + let _ = std::env::current_dir();
|
|
|
|
|
|
|
error: unnecessary qualification
|
|
--> $DIR/lint-qualification.rs:21: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:21: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();
|
|
|
|
|
|
|
error: unused import: `std::fmt`
|
|
--> $DIR/lint-qualification.rs:25:9
|
|
|
|
|
LL | use std::fmt;
|
|
| ^^^^^^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/lint-qualification.rs:3:9
|
|
|
|
|
LL | #![deny(unused_imports)]
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: unnecessary qualification
|
|
--> $DIR/lint-qualification.rs:30:13
|
|
|
|
|
LL | let _ = <bool as ::std::default::Default>::default(); // issue #121999
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
help: remove the unnecessary path segments
|
|
|
|
|
LL - let _ = <bool as ::std::default::Default>::default(); // issue #121999
|
|
LL + let _ = <bool as Default>::default(); // issue #121999
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|