mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
10 lines
338 B
Text
10 lines
338 B
Text
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
|
|
|