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