summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/four_forward_slashes_first_line.stderr
blob: afb7c6b4dbda4cd066ad81cb5d01b68927a33ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: this item has comments with 4 forward slashes (`////`). These look like doc comments, but they aren't
  --> $DIR/four_forward_slashes_first_line.rs:1:1
   |
LL | / //// borked doc comment on the first line. doesn't combust!
LL | | fn a() {}
   | |_
   |
   = note: `-D clippy::four-forward-slashes` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::four_forward_slashes)]`
help: make this a doc comment by removing one `/`
   |
LL + /// borked doc comment on the first line. doesn't combust!
   |

error: aborting due to previous error