]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/traits-issue-22019.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / run-pass / traits-issue-22019.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 an issue where global caching was causing free regions from
12 // distinct scopes to be compared (`'g` and `'h`). The only important
13 // thing is that compilation succeeds here.
14
15 #![allow(missing_copy_implementations)]
16 #![allow(unused_variables)]
17
18 use std::borrow::ToOwned;
19
20 pub struct CFGNode;
21
22 pub type Node<'a> = &'a CFGNode;
23
24 pub trait GraphWalk<'c, N> {
25     /// Returns all the nodes in this graph.
26     fn nodes(&'c self) where [N]:ToOwned<Owned=Vec<N>>;
27 }
28
29 impl<'g> GraphWalk<'g, Node<'g>> for u32
30 {
31     fn nodes(&'g self) where [Node<'g>]:ToOwned<Owned=Vec<Node<'g>>>
32     { loop { } }
33 }
34
35 impl<'h> GraphWalk<'h, Node<'h>> for u64
36 {
37     fn nodes(&'h self) where [Node<'h>]:ToOwned<Owned=Vec<Node<'h>>>
38     { loop { } }
39 }
40
41 fn main()  { }