about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/doc_suspicious_footnotes_include.stderr
blob: 74154e3f4ef3594642781d310b5eedd2f5f1c880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: looks like a footnote ref, but has no matching footnote
  --> tests/ui/doc_suspicious_footnotes_include.txt:1:23
   |
LL | This is not a footnote[^1].
   |                       ^^^^
   |
   = note: `-D clippy::doc-suspicious-footnotes` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::doc_suspicious_footnotes)]`
help: add footnote definition
   |
LL ~ [^2]: hello world
LL + 
LL + [^1]: <!-- description -->
   |

error: aborting due to 1 previous error