summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/seek_from_current.stderr
blob: c079f361192928bcea5fe74a99da5e93cc521309 (plain)
1
2
3
4
5
6
7
8
9
10
error: using `SeekFrom::Current` to start from current position
  --> $DIR/seek_from_current.rs:20:5
   |
LL |     f.seek(SeekFrom::Current(0))?;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `f.stream_position()`
   |
   = note: `-D clippy::seek-from-current` implied by `-D warnings`

error: aborting due to previous error