about summary refs log tree commit diff
path: root/tests/rustdoc-ui/lints/doc-without-codeblock.stderr
blob: d230f1606935cefe00d50ec3b83df4c7f659d666 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: missing code example in this documentation
  --> $DIR/doc-without-codeblock.rs:10:5
   |
LL |     /// Or maybe not because she saved herself!
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/doc-without-codeblock.rs:2:9
   |
LL | #![deny(rustdoc::missing_doc_code_examples)]
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: missing code example in this documentation
  --> $DIR/doc-without-codeblock.rs:4:1
   |
LL | /// Some docs.
   | ^^^^^^^^^^^^^^

error: aborting due to 2 previous errors