]> git.lizzy.rs Git - rust.git/blob - tests/ui/unused_io_amount.rs
rustfmt tests
[rust.git] / tests / ui / unused_io_amount.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 #![allow(dead_code)]
11 #![warn(clippy::unused_io_amount)]
12
13 use std::io;
14
15 // FIXME: compiletest doesn't understand errors from macro invocation span
16 fn try_macro<T: io::Read + io::Write>(s: &mut T) -> io::Result<()> {
17     try!(s.write(b"test"));
18     let mut buf = [0u8; 4];
19     try!(s.read(&mut buf));
20     Ok(())
21 }
22
23 fn question_mark<T: io::Read + io::Write>(s: &mut T) -> io::Result<()> {
24     s.write(b"test")?;
25     let mut buf = [0u8; 4];
26     s.read(&mut buf)?;
27     Ok(())
28 }
29
30 fn unwrap<T: io::Read + io::Write>(s: &mut T) {
31     s.write(b"test").unwrap();
32     let mut buf = [0u8; 4];
33     s.read(&mut buf).unwrap();
34 }
35
36 fn main() {}