]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-28936.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-28936.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-pass
12 pub type Session = i32;
13 pub struct StreamParser<'a, T> {
14     _tokens: T,
15     _session: &'a mut Session,
16 }
17
18 impl<'a, T> StreamParser<'a, T> {
19     pub fn thing(&mut self) -> bool { true }
20 }
21
22 pub fn parse_stream<T: Iterator<Item=i32>, U, F>(
23         _session: &mut Session, _tokens: T, _f: F) -> U
24     where F: Fn(&mut StreamParser<T>) -> U { panic!(); }
25
26 pub fn thing(session: &mut Session) {
27     let mut stream = vec![1, 2, 3].into_iter();
28
29     let _b = parse_stream(session,
30                           stream.by_ref(),
31                           // replacing the above with the following fixes it
32                           //&mut stream,
33                           |p| p.thing());
34
35 }
36
37 fn main() {}