]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-9719.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-9719.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 // compile-pass
12 #![allow(dead_code)]
13 // pretty-expanded FIXME #23616
14
15 mod a {
16     pub enum Enum<T> {
17         A(T),
18     }
19
20     pub trait X {
21         fn dummy(&self) { }
22     }
23     impl X for isize {}
24
25     pub struct Z<'a>(Enum<&'a (X+'a)>);
26     fn foo() { let x: isize = 42; let z = Z(Enum::A(&x as &X)); let _ = z; }
27 }
28
29 mod b {
30     trait X {
31         fn dummy(&self) { }
32     }
33     impl X for isize {}
34     struct Y<'a>{
35         x:Option<&'a (X+'a)>,
36     }
37
38     fn bar() {
39         let x: isize = 42;
40         let _y = Y { x: Some(&x as &X) };
41     }
42 }
43
44 mod c {
45     pub trait X { fn f(&self); }
46     impl X for isize { fn f(&self) {} }
47     pub struct Z<'a>(Option<&'a (X+'a)>);
48     fn main() { let x: isize = 42; let z = Z(Some(&x as &X)); let _ = z; }
49 }
50
51 pub fn main() {}