]> git.lizzy.rs Git - rust.git/blob - tests/ui/issue_2356.rs
Merge pull request #3269 from rust-lang-nursery/relicense
[rust.git] / tests / ui / issue_2356.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 #![deny(clippy::while_let_on_iterator)]
14
15 use std::iter::Iterator;
16
17 struct Foo;
18
19 impl Foo {
20     fn foo1<I: Iterator<Item = usize>>(mut it: I) {
21         while let Some(_) = it.next() {
22             println!("{:?}", it.size_hint());
23         }
24     }
25
26     fn foo2<I: Iterator<Item = usize>>(mut it: I) {
27         while let Some(e) = it.next() {
28             println!("{:?}", e);
29         }
30     }
31 }
32
33 fn main() {
34     Foo::foo1(vec![].into_iter());
35     Foo::foo2(vec![].into_iter());
36 }