2019-09-11 16:39:02 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/doc_unsafe.rs:9:1
|
2019-09-11 16:39:02 +00:00
|
|
|
|
|
|
|
|
LL | / pub unsafe fn destroy_the_planet() {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::missing-safety-doc` implied by `-D warnings`
|
|
|
|
|
2019-10-02 15:19:30 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/doc_unsafe.rs:32:5
|
2019-10-02 15:19:30 +00:00
|
|
|
|
|
|
|
|
LL | / pub unsafe fn republished() {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/doc_unsafe.rs:40:5
|
2019-10-02 15:19:30 +00:00
|
|
|
|
|
|
|
|
LL | unsafe fn woefully_underdocumented(self);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
error: docs for unsafe trait missing `# Safety` section
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/doc_unsafe.rs:46:1
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
|
|
|
LL | / pub unsafe trait UnsafeTrait {
|
|
|
|
LL | | fn method();
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
|
|
|
|
2019-10-02 15:19:30 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/doc_unsafe.rs:76:5
|
2019-10-02 15:19:30 +00:00
|
|
|
|
|
|
|
|
LL | / pub unsafe fn more_undocumented_unsafe() -> Self {
|
|
|
|
LL | | unimplemented!();
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
2020-01-04 19:19:14 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/doc_unsafe.rs:92:9
|
2020-01-04 19:19:14 +00:00
|
|
|
|
|
|
|
|
LL | / pub unsafe fn whee() {
|
|
|
|
LL | | unimplemented!()
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
...
|
|
|
|
LL | very_unsafe!();
|
2021-10-14 18:28:30 +00:00
|
|
|
| -------------- in this macro invocation
|
2020-02-07 03:34:06 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `very_unsafe` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-01-04 19:19:14 +00:00
|
|
|
|
2021-10-07 09:21:30 +00:00
|
|
|
error: aborting due to 6 previous errors
|
2019-09-11 16:39:02 +00:00
|
|
|
|