]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/issue-13853.rs
Auto merge of #22517 - brson:relnotes, r=Gankro
[rust.git] / src / test / compile-fail / issue-13853.rs
1 // Copyright 2014 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 trait Node {
12     fn zomg();
13 }
14
15 trait Graph<N: Node> {
16     fn nodes<'a, I: Iterator<Item=&'a N>>(&'a self) -> I;
17 }
18
19 impl<N: Node> Graph<N> for Vec<N> {
20     fn nodes<'a, I: Iterator<Item=&'a N>>(&self) -> I {
21         self.iter() //~ ERROR mismatched types
22     }
23 }
24
25 struct Stuff;
26
27 impl Node for Stuff {
28     fn zomg() {
29         println!("zomg");
30     }
31 }
32
33 fn iterate<N: Node, G: Graph<N>>(graph: &G) {
34     for node in graph.iter() { //~ ERROR does not implement any method in scope named
35         node.zomg();  //~ error: the type of this value must be known in this context
36     }
37 }
38
39 pub fn main() {
40     let graph = Vec::new();
41
42     graph.push(Stuff);
43
44     iterate(graph); //~ ERROR mismatched types
45 }