mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
cc622608db
`must_use_unit` lints unit-returning functions with a `#[must_use]` attribute, suggesting to remove it. `double_must_use` lints functions with a plain `#[must_use]` attribute, but which return a type which is already `#[must_use]`, so the attribute has no benefit. `must_use_candidate` is a pedantic lint that lints functions and methods that return some non-unit type that is not already `#[must_use]` and suggests to add the annotation.
90 lines
3.1 KiB
Text
90 lines
3.1 KiB
Text
error: this function has too many arguments (8/7)
|
|
--> $DIR/functions.rs:8:1
|
|
|
|
|
LL | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::too-many-arguments` implied by `-D warnings`
|
|
|
|
error: this function has too many arguments (8/7)
|
|
--> $DIR/functions.rs:11:1
|
|
|
|
|
LL | / fn bad_multiline(
|
|
LL | | one: u32,
|
|
LL | | two: u32,
|
|
LL | | three: &str,
|
|
... |
|
|
LL | | eight: ()
|
|
LL | | ) {
|
|
| |__^
|
|
|
|
error: this function has too many arguments (8/7)
|
|
--> $DIR/functions.rs:45:5
|
|
|
|
|
LL | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ());
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this function has too many arguments (8/7)
|
|
--> $DIR/functions.rs:54:5
|
|
|
|
|
LL | fn bad_method(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:63:34
|
|
|
|
|
LL | println!("{}", unsafe { *p });
|
|
| ^
|
|
|
|
|
= note: `-D clippy::not-unsafe-ptr-arg-deref` implied by `-D warnings`
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:64:35
|
|
|
|
|
LL | println!("{:?}", unsafe { p.as_ref() });
|
|
| ^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:65:33
|
|
|
|
|
LL | unsafe { std::ptr::read(p) };
|
|
| ^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:76:30
|
|
|
|
|
LL | println!("{}", unsafe { *p });
|
|
| ^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:77:31
|
|
|
|
|
LL | println!("{:?}", unsafe { p.as_ref() });
|
|
| ^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:78:29
|
|
|
|
|
LL | unsafe { std::ptr::read(p) };
|
|
| ^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:87:34
|
|
|
|
|
LL | println!("{}", unsafe { *p });
|
|
| ^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:88:35
|
|
|
|
|
LL | println!("{:?}", unsafe { p.as_ref() });
|
|
| ^
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
|
--> $DIR/functions.rs:89:33
|
|
|
|
|
LL | unsafe { std::ptr::read(p) };
|
|
| ^
|
|
|
|
error: aborting due to 13 previous errors
|
|
|