rust/tests/ui/functions.stderr

80 lines
2.8 KiB
Plaintext
Raw Normal View History

error: this function has too many arguments (8/7)
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:21:1
|
2018-10-06 11:18:06 -05:00
21 | / fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {
22 | | }
| |_^
|
= note: `-D clippy::too-many-arguments` implied by `-D warnings`
error: this function has too many arguments (8/7)
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:29:5
|
2018-10-06 11:18:06 -05:00
29 | 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)
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:38:5
|
2018-10-06 11:18:06 -05:00
38 | 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`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:47:34
|
2018-10-06 11:18:06 -05:00
47 | println!("{}", unsafe { *p });
| ^
|
= 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`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:48:35
|
2018-10-06 11:18:06 -05:00
48 | println!("{:?}", unsafe { p.as_ref() });
| ^
error: this public function dereferences a raw pointer but is not marked `unsafe`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:49:33
|
2018-10-06 11:18:06 -05:00
49 | unsafe { std::ptr::read(p) };
| ^
error: this public function dereferences a raw pointer but is not marked `unsafe`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:60:30
|
2018-10-06 11:18:06 -05:00
60 | println!("{}", unsafe { *p });
| ^
error: this public function dereferences a raw pointer but is not marked `unsafe`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:61:31
|
2018-10-06 11:18:06 -05:00
61 | println!("{:?}", unsafe { p.as_ref() });
| ^
error: this public function dereferences a raw pointer but is not marked `unsafe`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:62:29
|
2018-10-06 11:18:06 -05:00
62 | unsafe { std::ptr::read(p) };
| ^
error: this public function dereferences a raw pointer but is not marked `unsafe`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:71:34
|
2018-10-06 11:18:06 -05:00
71 | println!("{}", unsafe { *p });
| ^
error: this public function dereferences a raw pointer but is not marked `unsafe`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:72:35
|
2018-10-06 11:18:06 -05:00
72 | println!("{:?}", unsafe { p.as_ref() });
| ^
error: this public function dereferences a raw pointer but is not marked `unsafe`
2018-10-06 11:18:06 -05:00
--> $DIR/functions.rs:73:33
|
2018-10-06 11:18:06 -05:00
73 | unsafe { std::ptr::read(p) };
| ^
2018-01-16 10:06:27 -06:00
error: aborting due to 12 previous errors