]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/functions.stderr
Add size_of_ref lint
[rust.git] / tests / ui / functions.stderr
index 0abf8f2f0a897a2d0951193c0ae6f5bedc8c7b1a..8ebd4997f4f6e836983c92a66191a793429dc3ee 100644 (file)
 error: this function has too many arguments (8/7)
-  --> $DIR/functions.rs:11:1
-   |
-11 | / fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {
-12 | | }
-   | |_^
+  --> $DIR/functions.rs:8:1
    |
-   = note: #[deny(too_many_arguments)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/functions.rs:4:9
+LL | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
+   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
-4  | #![deny(clippy)]
-   |         ^^^^^^
+   = note: `-D clippy::too-many-arguments` implied by `-D warnings`
 
 error: this function has too many arguments (8/7)
-  --> $DIR/functions.rs:19:5
-   |
-19 |     fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ());
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+  --> $DIR/functions.rs:11:1
    |
-   = note: #[deny(too_many_arguments)] implied by #[deny(clippy)]
+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:28:5
+  --> $DIR/functions.rs:45:5
    |
-28 |     fn bad_method(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+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
    |
-   = note: #[deny(too_many_arguments)] implied by #[deny(clippy)]
+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:37:34
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:63:34
    |
-37 |         println!("{}", unsafe { *p });
+LL |         println!("{}", unsafe { *p });
    |                                  ^
    |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/functions.rs:4:9
-   |
-4  | #![deny(clippy)]
-   |         ^^^^^^
+   = 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:38:35
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:64:35
    |
-38 |         println!("{:?}", unsafe { p.as_ref() });
+LL |         println!("{:?}", unsafe { p.as_ref() });
    |                                   ^
-   |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
 
-error: this public function dereferences a raw pointer but is not marked `unsafe`
-  --> $DIR/functions.rs:39:33
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:65:33
    |
-39 |         unsafe { std::ptr::read(p) };
+LL |         unsafe { std::ptr::read(p) };
    |                                 ^
-   |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
 
-error: this public function dereferences a raw pointer but is not marked `unsafe`
-  --> $DIR/functions.rs:50:30
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:76:30
    |
-50 |     println!("{}", unsafe { *p });
+LL |     println!("{}", unsafe { *p });
    |                              ^
-   |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
 
-error: this public function dereferences a raw pointer but is not marked `unsafe`
-  --> $DIR/functions.rs:51:31
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:77:31
    |
-51 |     println!("{:?}", unsafe { p.as_ref() });
+LL |     println!("{:?}", unsafe { p.as_ref() });
    |                               ^
-   |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
 
-error: this public function dereferences a raw pointer but is not marked `unsafe`
-  --> $DIR/functions.rs:52:29
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:78:29
    |
-52 |     unsafe { std::ptr::read(p) };
+LL |     unsafe { std::ptr::read(p) };
    |                             ^
+
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:84:30
    |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
+LL |     println!("{}", unsafe { *p });
+   |                              ^
 
-error: this public function dereferences a raw pointer but is not marked `unsafe`
-  --> $DIR/functions.rs:61:34
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:85:31
    |
-61 |         println!("{}", unsafe { *p });
-   |                                  ^
+LL |     println!("{:?}", unsafe { p.as_ref() });
+   |                               ^
+
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:86:29
    |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
+LL |     unsafe { std::ptr::read(p) };
+   |                             ^
 
-error: this public function dereferences a raw pointer but is not marked `unsafe`
-  --> $DIR/functions.rs:62:35
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:95:34
    |
-62 |         println!("{:?}", unsafe { p.as_ref() });
-   |                                   ^
+LL |         println!("{}", unsafe { *p });
+   |                                  ^
+
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:96:35
    |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
+LL |         println!("{:?}", unsafe { p.as_ref() });
+   |                                   ^
 
-error: this public function dereferences a raw pointer but is not marked `unsafe`
-  --> $DIR/functions.rs:63:33
+error: this public function might dereference a raw pointer but is not marked `unsafe`
+  --> $DIR/functions.rs:97:33
    |
-63 |         unsafe { std::ptr::read(p) };
+LL |         unsafe { std::ptr::read(p) };
    |                                 ^
-   |
-   = note: #[deny(not_unsafe_ptr_arg_deref)] implied by #[deny(clippy)]
 
-error: aborting due to 12 previous errors
+error: aborting due to 16 previous errors