mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
31 lines
624 B
Rust
31 lines
624 B
Rust
|
|
|
|
|
|
#![allow(dead_code)]
|
|
#![warn(unused_io_amount)]
|
|
|
|
use std::io;
|
|
|
|
// FIXME: compiletest doesn't understand errors from macro invocation span
|
|
fn try_macro<T: io::Read + io::Write>(s: &mut T) -> io::Result<()> {
|
|
try!(s.write(b"test"));
|
|
let mut buf = [0u8; 4];
|
|
try!(s.read(&mut buf));
|
|
Ok(())
|
|
}
|
|
|
|
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() {
|
|
}
|