// Copyright 2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. trait Node { fn zomg(); } trait Graph { fn nodes<'a, I: Iterator>(&'a self) -> I where N: 'a; } impl Graph for Vec { fn nodes<'a, I: Iterator>(&self) -> I where N: 'a { self.iter() //~ ERROR mismatched types } } struct Stuff; impl Node for Stuff { fn zomg() { println!("zomg"); } } fn iterate>(graph: &G) { for node in graph.iter() { //~ ERROR no method named `iter` found node.zomg(); } } pub fn main() { let graph = Vec::new(); graph.push(Stuff); iterate(graph); //~ ERROR mismatched types }