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