]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-9719.rs
Auto merge of #22517 - brson:relnotes, r=Gankro
[rust.git] / src / test / run-pass / 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 mod a {
12     pub enum Enum<T> {
13         A(T),
14     }
15
16     pub trait X {}
17     impl X for int {}
18
19     pub struct Z<'a>(Enum<&'a (X+'a)>);
20     fn foo() { let x = 42; let z = Z(Enum::A(&x as &X)); let _ = z; }
21 }
22
23 mod b {
24     trait X {}
25     impl X for int {}
26     struct Y<'a>{
27         x:Option<&'a (X+'a)>,
28     }
29
30     fn bar() {
31         let x = 42;
32         let _y = Y { x: Some(&x as &X) };
33     }
34 }
35
36 mod c {
37     pub trait X { fn f(&self); }
38     impl X for int { fn f(&self) {} }
39     pub struct Z<'a>(Option<&'a (X+'a)>);
40     fn main() { let x = 42; let z = Z(Some(&x as &X)); let _ = z; }
41 }
42
43 pub fn main() {}