mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
24 lines
540 B
Rust
24 lines
540 B
Rust
#![warn(clippy::seek_from_current)]
|
|
|
|
use std::fs::File;
|
|
use std::io::{self, Seek, SeekFrom, Write};
|
|
|
|
#[clippy::msrv = "1.50"]
|
|
fn _msrv_1_50() -> io::Result<()> {
|
|
let mut f = File::create("foo.txt")?;
|
|
f.write_all(b"Hi!")?;
|
|
f.seek(SeekFrom::Current(0))?;
|
|
f.seek(SeekFrom::Current(1))?;
|
|
Ok(())
|
|
}
|
|
|
|
#[clippy::msrv = "1.51"]
|
|
fn _msrv_1_51() -> io::Result<()> {
|
|
let mut f = File::create("foo.txt")?;
|
|
f.write_all(b"Hi!")?;
|
|
f.seek(SeekFrom::Current(0))?;
|
|
f.seek(SeekFrom::Current(1))?;
|
|
Ok(())
|
|
}
|
|
|
|
fn main() {}
|