]> git.lizzy.rs Git - rust.git/blob - tests/ui/doc_unsafe.stderr
iterate List by value
[rust.git] / tests / ui / doc_unsafe.stderr
1 error: unsafe function's docs miss `# Safety` section
2   --> $DIR/doc_unsafe.rs:7:1
3    |
4 LL | / pub unsafe fn destroy_the_planet() {
5 LL | |     unimplemented!();
6 LL | | }
7    | |_^
8    |
9    = note: `-D clippy::missing-safety-doc` implied by `-D warnings`
10
11 error: unsafe function's docs miss `# Safety` section
12   --> $DIR/doc_unsafe.rs:30:5
13    |
14 LL | /     pub unsafe fn republished() {
15 LL | |         unimplemented!();
16 LL | |     }
17    | |_____^
18
19 error: unsafe function's docs miss `# Safety` section
20   --> $DIR/doc_unsafe.rs:38:5
21    |
22 LL |     unsafe fn woefully_underdocumented(self);
23    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24
25 error: unsafe function's docs miss `# Safety` section
26   --> $DIR/doc_unsafe.rs:57:5
27    |
28 LL | /     pub unsafe fn more_undocumented_unsafe() -> Self {
29 LL | |         unimplemented!();
30 LL | |     }
31    | |_____^
32
33 error: unsafe function's docs miss `# Safety` section
34   --> $DIR/doc_unsafe.rs:73:9
35    |
36 LL | /         pub unsafe fn whee() {
37 LL | |             unimplemented!()
38 LL | |         }
39    | |_________^
40 ...
41 LL |   very_unsafe!();
42    |   --------------- in this macro invocation
43    |
44    = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
45
46 error: aborting due to 5 previous errors
47