]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/traits-issue-22019.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[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 // pretty-expanded FIXME #23616
16
17 #![allow(missing_copy_implementations)]
18 #![allow(unused_variables)]
19
20 use std::borrow::ToOwned;
21
22 pub struct CFGNode;
23
24 pub type Node<'a> = &'a CFGNode;
25
26 pub trait GraphWalk<'c, N> {
27     /// Returns all the nodes in this graph.
28     fn nodes(&'c self) where [N]:ToOwned<Owned=Vec<N>>;
29 }
30
31 impl<'g> GraphWalk<'g, Node<'g>> for u32
32 {
33     fn nodes(&'g self) where [Node<'g>]:ToOwned<Owned=Vec<Node<'g>>>
34     { loop { } }
35 }
36
37 impl<'h> GraphWalk<'h, Node<'h>> for u64
38 {
39     fn nodes(&'h self) where [Node<'h>]:ToOwned<Owned=Vec<Node<'h>>>
40     { loop { } }
41 }
42
43 fn main()  { }