mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
e1d573c242
try macro is deprecated now, so Clippy will drop the support for it also
19 lines
386 B
Rust
19 lines
386 B
Rust
#![allow(dead_code)]
|
|
#![warn(clippy::unused_io_amount)]
|
|
|
|
use std::io;
|
|
|
|
fn question_mark<T: io::Read + io::Write>(s: &mut T) -> io::Result<()> {
|
|
s.write(b"test")?;
|
|
let mut buf = [0u8; 4];
|
|
s.read(&mut buf)?;
|
|
Ok(())
|
|
}
|
|
|
|
fn unwrap<T: io::Read + io::Write>(s: &mut T) {
|
|
s.write(b"test").unwrap();
|
|
let mut buf = [0u8; 4];
|
|
s.read(&mut buf).unwrap();
|
|
}
|
|
|
|
fn main() {}
|