6efb3a2b9a
addresses https://github.com/rust-lang/rust-clippy/issues/7886 added `seek_from_current` complexity lint. it checks use of `Seek#seek` with `SeekFrom::Current(0)` and suggests `Seek#stream_position` method fix: add msrv fix: register LintInfo fix: remove unnecessary files fix: add test for msrv fix: remove fix fix: remove docs
11 lines
338 B
Plaintext
11 lines
338 B
Plaintext
error: using `SeekFrom::Current` to start from current position
|
|
--> $DIR/seek_from_current.rs:21: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
|
|
|