2017-02-07 20:05:30 +00:00
|
|
|
error: this function has too many arguments (8/7)
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:11:1
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-04-23 13:25:22 +00:00
|
|
|
11 | / fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {
|
2017-05-11 11:29:21 +00:00
|
|
|
12 | | }
|
2017-04-23 13:25:22 +00:00
|
|
|
| |_^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D too-many-arguments` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: this function has too many arguments (8/7)
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:19:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
19 | 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)
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:28:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
28 | 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`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:37:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
37 | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
2017-05-17 12:19:44 +00:00
|
|
|
= note: `-D 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`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:38:35
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
38 | 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`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:39:33
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
39 | 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`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:50:30
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
50 | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:51:31
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
51 | 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`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:52:29
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
52 | 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`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:61:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
61 | println!("{}", unsafe { *p });
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: this public function dereferences a raw pointer but is not marked `unsafe`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:62:35
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
62 | 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`
|
2017-08-01 15:54:21 +00:00
|
|
|
--> $DIR/functions.rs:63:33
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2017-05-11 11:29:21 +00:00
|
|
|
63 | unsafe { std::ptr::read(p) };
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^
|
|
|
|
|