about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/doc_unsafe.stderr
blob: 6e128133d498e6b60f6f593932e5fea3011b43e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
error: unsafe function's docs are missing a `# Safety` section
  --> tests/ui/doc_unsafe.rs:9:1
   |
LL | pub unsafe fn destroy_the_planet() {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::missing-safety-doc` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::missing_safety_doc)]`

error: unsafe function's docs are missing a `# Safety` section
  --> tests/ui/doc_unsafe.rs:33:5
   |
LL |     pub unsafe fn republished() {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: unsafe function's docs are missing a `# Safety` section
  --> tests/ui/doc_unsafe.rs:42:5
   |
LL |     unsafe fn woefully_underdocumented(self);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: docs for unsafe trait missing `# Safety` section
  --> tests/ui/doc_unsafe.rs:49:1
   |
LL | pub unsafe trait UnsafeTrait {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: unsafe function's docs are missing a `# Safety` section
  --> tests/ui/doc_unsafe.rs:80:5
   |
LL |     pub unsafe fn more_undocumented_unsafe() -> Self {
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: unsafe function's docs are missing a `# Safety` section
  --> tests/ui/doc_unsafe.rs:97:9
   |
LL |         pub unsafe fn whee() {
   |         ^^^^^^^^^^^^^^^^^^^^
...
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