]> git.lizzy.rs Git - rust.git/blob - tests/ui/unused_io_amount.rs
Merge pull request #3265 from mikerite/fix-export
[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
11 #![feature(tool_lints)]
12
13
14 #![allow(dead_code)]
15 #![warn(clippy::unused_io_amount)]
16
17 use std::io;
18
19 // FIXME: compiletest doesn't understand errors from macro invocation span
20 fn try_macro<T: io::Read + io::Write>(s: &mut T) -> io::Result<()> {
21     try!(s.write(b"test"));
22     let mut buf = [0u8; 4];
23     try!(s.read(&mut buf));
24     Ok(())
25 }
26
27 fn question_mark<T: io::Read + io::Write>(s: &mut T) -> io::Result<()> {
28     s.write(b"test")?;
29     let mut buf = [0u8; 4];
30     s.read(&mut buf)?;
31     Ok(())
32 }
33
34 fn unwrap<T: io::Read + io::Write>(s: &mut T) {
35     s.write(b"test").unwrap();
36     let mut buf = [0u8; 4];
37     s.read(&mut buf).unwrap();
38 }
39
40 fn main() {
41 }