2017-02-07 20:05:30 +00:00
|
|
|
error: this function has too many arguments (8/7)
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:8:1
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
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)
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:25:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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)
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:34:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:43:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:44:35
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:45:33
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:56:30
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:57:31
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:58:29
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:67:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:68:35
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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`
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/functions.rs:69:33
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 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
|
|
|
|
|