mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
55 lines
1.4 KiB
Text
55 lines
1.4 KiB
Text
error: unsafe function's docs miss `# Safety` section
|
|
--> $DIR/doc_unsafe.rs:7:1
|
|
|
|
|
LL | / pub unsafe fn destroy_the_planet() {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_^
|
|
|
|
|
= note: `-D clippy::missing-safety-doc` implied by `-D warnings`
|
|
|
|
error: unsafe function's docs miss `# Safety` section
|
|
--> $DIR/doc_unsafe.rs:30:5
|
|
|
|
|
LL | / pub unsafe fn republished() {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: unsafe function's docs miss `# Safety` section
|
|
--> $DIR/doc_unsafe.rs:38:5
|
|
|
|
|
LL | unsafe fn woefully_underdocumented(self);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: docs for unsafe trait missing `# Safety` section
|
|
--> $DIR/doc_unsafe.rs:44:1
|
|
|
|
|
LL | / pub unsafe trait UnsafeTrait {
|
|
LL | | fn method();
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: unsafe function's docs miss `# Safety` section
|
|
--> $DIR/doc_unsafe.rs:74:5
|
|
|
|
|
LL | / pub unsafe fn more_undocumented_unsafe() -> Self {
|
|
LL | | unimplemented!();
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: unsafe function's docs miss `# Safety` section
|
|
--> $DIR/doc_unsafe.rs:90:9
|
|
|
|
|
LL | / pub unsafe fn whee() {
|
|
LL | | unimplemented!()
|
|
LL | | }
|
|
| |_________^
|
|
...
|
|
LL | very_unsafe!();
|
|
| -------------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `very_unsafe` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 6 previous errors
|
|
|