]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/associated-types-nested-projections.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / associated-types-nested-projections.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 // Test that we can resolve nested projection types. Issue #20666.
12
13 // pretty-expanded FIXME #23616
14
15 #![feature(core)]
16
17 use std::marker::MarkerTrait;
18 use std::slice;
19
20 trait Bound : MarkerTrait {}
21
22 impl<'a> Bound for &'a i32 {}
23
24 trait IntoIterator {
25     type Iter: Iterator;
26
27     fn into_iter(self) -> Self::Iter;
28 }
29
30 impl<'a, T> IntoIterator for &'a [T; 3] {
31     type Iter = slice::Iter<'a, T>;
32
33     fn into_iter(self) -> slice::Iter<'a, T> {
34         self.iter()
35     }
36 }
37
38 fn foo<X>(x: X) where
39     X: IntoIterator,
40     <<X as IntoIterator>::Iter as Iterator>::Item: Bound,
41 {
42 }
43
44 fn bar<T, I, X>(x: X) where
45     T: Bound,
46     I: Iterator<Item=T>,
47     X: IntoIterator<Iter=I>,
48 {
49
50 }
51
52 fn main() {
53     foo(&[0, 1, 2]);
54     bar(&[0, 1, 2]);
55 }