rust-clippy/tests/ui/seek_from_current.stderr
2024-02-17 12:34:54 +00:00

11 lines
423 B
Text

error: using `SeekFrom::Current` to start from current position
--> tests/ui/seek_from_current.rs:19:5
|
LL | f.seek(SeekFrom::Current(0))?;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `f.stream_position()`
|
= note: `-D clippy::seek-from-current` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::seek_from_current)]`
error: aborting due to 1 previous error