2017-02-07 20:05:30 +00:00
|
|
|
error: this function has too many arguments (8/7)
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:17:1
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
17 | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::too-many-arguments` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this function has too many arguments (8/7)
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:34:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
34 | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ());
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this function has too many arguments (8/7)
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:43:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
43 | fn bad_method(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:52:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
52 | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::not-unsafe-ptr-arg-deref` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:53:35
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
53 | println!("{:?}", unsafe { p.as_ref() });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:54:33
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
54 | unsafe { std::ptr::read(p) };
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:65:30
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
65 | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:66:31
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
66 | println!("{:?}", unsafe { p.as_ref() });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:67:29
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
67 | unsafe { std::ptr::read(p) };
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:76:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
76 | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:77:35
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
77 | println!("{:?}", unsafe { p.as_ref() });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/functions.rs:78:33
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
78 | unsafe { std::ptr::read(p) };
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 12 previous errors
|
|
|
|
|