2019-09-11 16:39:02 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/doc_unsafe.rs:9:1
|
2019-09-11 16:39:02 +00:00
|
|
|
|
|
2022-11-21 19:34:47 +00:00
|
|
|
LL | pub unsafe fn destroy_the_planet() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-09-11 16:39:02 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::missing-safety-doc` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::missing_safety_doc)]`
|
2019-09-11 16:39:02 +00:00
|
|
|
|
2019-10-02 15:19:30 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/doc_unsafe.rs:32:5
|
2019-10-02 15:19:30 +00:00
|
|
|
|
|
2022-11-21 19:34:47 +00:00
|
|
|
LL | pub unsafe fn republished() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-02 15:19:30 +00:00
|
|
|
|
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/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
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/doc_unsafe.rs:46:1
|
2021-10-07 09:21:30 +00:00
|
|
|
|
|
2022-11-21 19:34:47 +00:00
|
|
|
LL | pub unsafe trait UnsafeTrait {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2021-10-07 09:21:30 +00:00
|
|
|
|
2019-10-02 15:19:30 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/doc_unsafe.rs:76:5
|
2019-10-02 15:19:30 +00:00
|
|
|
|
|
2022-11-21 19:34:47 +00:00
|
|
|
LL | pub unsafe fn more_undocumented_unsafe() -> Self {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-10-02 15:19:30 +00:00
|
|
|
|
2020-01-04 19:19:14 +00:00
|
|
|
error: unsafe function's docs miss `# Safety` section
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/doc_unsafe.rs:92:9
|
2020-01-04 19:19:14 +00:00
|
|
|
|
|
2022-11-21 19:34:47 +00:00
|
|
|
LL | pub unsafe fn whee() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2020-01-04 19:19:14 +00:00
|
|
|
...
|
2022-11-21 19:34:47 +00:00
|
|
|
LL | very_unsafe!();
|
|
|
|
| -------------- 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
|
|
|
|