2017-02-07 14:05:30 -06:00
|
|
|
error: this function has too many arguments (8/7)
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/functions.rs:8:1
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
|
2019-09-18 01:37:41 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::too-many-arguments` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this function has too many arguments (8/7)
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:11:1
|
|
|
|
|
|
|
|
|
LL | / fn bad_multiline(
|
|
|
|
LL | | one: u32,
|
|
|
|
LL | | two: u32,
|
|
|
|
LL | | three: &str,
|
|
|
|
... |
|
|
|
|
LL | | eight: ()
|
|
|
|
LL | | ) {
|
2019-09-18 01:37:41 -05:00
|
|
|
| |__^
|
2019-05-01 14:32:54 -05:00
|
|
|
|
|
|
|
error: this function has too many arguments (8/7)
|
|
|
|
--> $DIR/functions.rs:45:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ());
|
2019-09-18 01:37:41 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this function has too many arguments (8/7)
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:54:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn bad_method(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
|
2019-09-18 01:37:41 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:63:34
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | println!("{}", unsafe { *p });
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::not-unsafe-ptr-arg-deref` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:64:35
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | println!("{:?}", unsafe { p.as_ref() });
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:65:33
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | unsafe { std::ptr::read(p) };
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:76:30
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | println!("{}", unsafe { *p });
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:77:31
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | println!("{:?}", unsafe { p.as_ref() });
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2019-05-01 14:32:54 -05:00
|
|
|
--> $DIR/functions.rs:78:29
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | unsafe { std::ptr::read(p) };
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2022-01-17 06:29:07 -06:00
|
|
|
--> $DIR/functions.rs:84:30
|
|
|
|
|
|
|
|
|
LL | println!("{}", unsafe { *p });
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
|
|
|
--> $DIR/functions.rs:85:31
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
LL | unsafe { std::ptr::read(p) };
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
|
|
|
--> $DIR/functions.rs:95:34
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | println!("{}", unsafe { *p });
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2022-01-17 06:29:07 -06:00
|
|
|
--> $DIR/functions.rs:96:35
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | println!("{:?}", unsafe { p.as_ref() });
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2021-06-03 01:41:37 -05:00
|
|
|
error: this public function might dereference a raw pointer but is not marked `unsafe`
|
2022-01-17 06:29:07 -06:00
|
|
|
--> $DIR/functions.rs:97:33
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | unsafe { std::ptr::read(p) };
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^
|
|
|
|
|
2022-01-17 06:29:07 -06:00
|
|
|
error: aborting due to 16 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|